Exception: AMQ::Protocol::EmptyResponseError

Inherits:
Error
  • Object
show all
Defined in:
lib/amq/protocol/exceptions.rb

Constant Summary collapse

DEFAULT_MESSAGE =
"Empty response received from the server."

Instance Method Summary collapse

Methods inherited from Error

[], inherited, subclasses_with_values

Constructor Details

#initialize(message = self.class::DEFAULT_MESSAGE) ⇒ EmptyResponseError

Returns a new instance of EmptyResponseError.



37
38
39
# File 'lib/amq/protocol/exceptions.rb', line 37

def initialize(message = self.class::DEFAULT_MESSAGE)
  super(message)
end