Class: Rex::Proto::Amqp::Error::InvalidFrameError
- Inherits:
-
AmqpError
- Object
- RuntimeError
- AmqpError
- Rex::Proto::Amqp::Error::InvalidFrameError
- Defined in:
- lib/rex/proto/amqp/error.rb
Overview
Raised when trying to parse a frame that is invalid.
Instance Method Summary collapse
-
#initialize(msg = 'Invalid AMQP frame data was received and could not be parsed.') ⇒ InvalidFrameError
constructor
A new instance of InvalidFrameError.
Constructor Details
#initialize(msg = 'Invalid AMQP frame data was received and could not be parsed.') ⇒ InvalidFrameError
Returns a new instance of InvalidFrameError.
8 9 10 |
# File 'lib/rex/proto/amqp/error.rb', line 8 def initialize(msg='Invalid AMQP frame data was received and could not be parsed.') super(msg) end |