Exception: Bunny::NoFinalOctetError
- Inherits:
-
InconsistentDataError
- Object
- StandardError
- Exception
- InconsistentDataError
- Bunny::NoFinalOctetError
- Defined in:
- lib/bunny/exceptions.rb
Overview
Raised by adapters when frame does not end with octet AMQ::Protocol::Frame::FINAL_OCTET. This suggest that there is a bug in adapter or AMQ broker implementation.
Instance Method Summary collapse
-
#initialize ⇒ NoFinalOctetError
constructor
A new instance of NoFinalOctetError.
Constructor Details
#initialize ⇒ NoFinalOctetError
Returns a new instance of NoFinalOctetError
183 184 185 |
# File 'lib/bunny/exceptions.rb', line 183 def initialize super("Frame doesn't end with #{AMQ::Protocol::Frame::FINAL_OCTET} as it must, which means the size is miscalculated.") end |