class Bunny::NotAllowedError
Can indicate either a channel or connection-level issue
Attributes
Public Class Methods
Source
# File lib/bunny/exceptions.rb, line 57 def initialize(message, connection, connection_close = nil) super(message) @connection = connection @connection_close = connection_close end
Calls superclass method