Exception: AMQP::Client::Error::UnsupportedFrameType

Inherits:
AMQP::Client::Error show all
Defined in:
lib/amqp/client/errors.rb

Overview

Should never be raised as we support all official frame types

Instance Method Summary collapse

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