lib/eventq/eventq_base/exceptions/event_type_not_found.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module EventQ
  module Exceptions
    # 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.
    class EventTypeNotFound < StandardError
      def initialize(message)
        super(message)
      end
    end
  end
end