Exception: AMQP::Client::Error::UnsupportedFrameType
- Inherits:
-
AMQP::Client::Error
- Object
- StandardError
- AMQP::Client::Error
- AMQP::Client::Error::UnsupportedFrameType
- Defined in:
- lib/amqp/client/errors.rb
Overview
Should never be raised as we support all official frame types
Instance Method Summary collapse
-
#initialize(type) ⇒ UnsupportedFrameType
constructor
A new instance of UnsupportedFrameType.
Constructor Details
#initialize(type) ⇒ UnsupportedFrameType
Returns a new instance of UnsupportedFrameType.
23 24 25 |
# File 'lib/amqp/client/errors.rb', line 23 def initialize(type) super "Unsupported frame type '#{type}'" end |