Exception: Mack::Distributed::Errors::UnknownRouteName

Inherits:
StandardError
  • Object
show all
Defined in:
lib/distributed/errors/errors.rb

Overview

Raised when an unknown distributed route name for a distributed application is referenced.

Instance Method Summary collapse

Constructor Details

#initialize(app_name, route_name) ⇒ UnknownRouteName

Takes the application name and the route name.



16
17
18
# File 'lib/distributed/errors/errors.rb', line 16

def initialize(app_name, route_name)
  super("ROUTE_NAME: #{route_name}, is not a known/registered distributed route name for application: #{app_name}.")
end