class Bunny::NoFinalOctetError
Raised by adapters when frame does not end with {final octet AMQ::Protocol::Frame::FINAL_OCTET}. This suggest that there is a bug in adapter or AMQ
broker implementation.
@see www.rabbitmq.com/resources/specs/amqp0-9-1.pdf AMQP 0.9.1 specification (Section 2.3)
Public Class Methods
Source
# File lib/bunny/exceptions.rb, line 185 def initialize super("Frame doesn't end with #{AMQ::Protocol::Frame::FINAL_OCTET} as it must, which means the size is miscalculated.") end
Calls superclass method