Exception: EventQ::Exceptions::EventTypeNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/eventq/eventq_base/exceptions/event_type_not_found.rb

Overview

Error for when an event type is not found by the relevant adapters For AWS SNS that would be a Topic For RabbitMq that would be an Exchange.

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ EventTypeNotFound

Returns a new instance of EventTypeNotFound.



7
8
9
# File 'lib/eventq/eventq_base/exceptions/event_type_not_found.rb', line 7

def initialize(message)
  super(message)
end