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
# File lib/amqp/exceptions.rb, line 81
def initialize(frame)
  super("The connection is closed, you can't use it anymore!")
end