Class: Rex::Proto::Amqp::Error::InvalidFrameError

Inherits:
AmqpError
  • Object
show all
Defined in:
lib/rex/proto/amqp/error.rb

Overview

Raised when trying to parse a frame that is invalid.

Instance Method Summary collapse

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