Exception: EventEngine::UnroutableEventError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/event_engine/unroutable_event_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(event) ⇒ UnroutableEventError

Returns a new instance of UnroutableEventError.



3
4
5
6
7
# File 'lib/event_engine/unroutable_event_error.rb', line 3

def initialize(event)
  super("no processing rule for event #{event.event_name.inspect} " \
        "(pack #{event.domain.inspect}); declare it in the rules file " \
        "under events, packs, or default")
end