Exception: AMQP::Client::Error::UnsupportedMethodFrame
- Inherits:
-
AMQP::Client::Error
- Object
- StandardError
- AMQP::Client::Error
- AMQP::Client::Error::UnsupportedMethodFrame
- Defined in:
- lib/amqp/client/errors.rb
Overview
Raised if a frame is received but not implemented
Instance Method Summary collapse
-
#initialize(class_id, method_id) ⇒ UnsupportedMethodFrame
constructor
A new instance of UnsupportedMethodFrame.
Constructor Details
#initialize(class_id, method_id) ⇒ UnsupportedMethodFrame
Returns a new instance of UnsupportedMethodFrame.
30 31 32 |
# File 'lib/amqp/client/errors.rb', line 30 def initialize(class_id, method_id) super "Unsupported class/method: #{class_id} #{method_id}" end |