Exception: SimpleMessageQueue::ConfigurationError

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

Instance Method Summary collapse

Constructor Details

#initializeConfigurationError

Returns a new instance of ConfigurationError.



4
5
6
7
# File 'lib/simple_message_queue/errors.rb', line 4

def initialize
  message = "SimpleMessageQueue has not been configured. Create an initializer with a SimpleMessageQueue.configure block and set the access_key_id, secret_access_key and environment variable."
  super(message)
end