class RabbitmqClient::ExchangeRegistry::ExchangeNotFound

Custom Eroor thrown when trying to find unkown exchange

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/rabbitmq_client/exchange_registry.rb, line 10
def initialize(name)
  super("The Exchange '#{name}' cannot be found")
end