class AMQP::ChannelClosedError
Raised on attempt to use a channel that was previously closed (either due to channel-level exception or intentionally via AMQP::Channel#close
). @api public
Public Class Methods
new(instance)
click to toggle source
Calls superclass method
# File lib/amqp/exceptions.rb, line 74 def initialize(instance) super("Channel with id = #{instance.channel} is closed, you can't use it anymore!") end