Exception: AMQP::Client::Error::UnsupportedMethodFrame

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

Overview

Raised if a frame is received but not implemented

Instance Method Summary collapse

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