class BunnyPublisher::CannotCreateQueue

Public Instance Methods

to_s() click to toggle source
Calls superclass method
# File lib/bunny_publisher/errors.rb, line 7
def to_s
  [
    'Can not create queue for re-publishing. Set queue_name, routing_key, '\
    'or override BunnyPublisher::Mandatory#declare_republish_queue',
    super
  ].join(' ')
end