class Bunny::NotAllowedError

Can indicate either a channel or connection-level issue

Attributes

connection[R]
connection_close[R]

Public Class Methods

new(message, connection, connection_close = nil) click to toggle source
Calls superclass method
# File lib/bunny/exceptions.rb, line 55
def initialize(message, connection, connection_close = nil)
  super(message)

  @connection       = connection
  @connection_close = connection_close
end