class AMQP::ConnectionClosedError

Raised on attempt to use a connection that was previously closed @api public

Public Class Methods

new(frame) click to toggle source
Calls superclass method
# File lib/amqp/exceptions.rb, line 82
def initialize(frame)
  super("The connection is closed, you can't use it anymore!")
end