Exception: SimpleMessageQueue::NotImplementedError

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

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ NotImplementedError

Returns a new instance of NotImplementedError.



11
12
13
14
# File 'lib/simple_message_queue/errors.rb', line 11

def initialize(name)
  message = "You must define the process_message method for #{name}"
  super(message)
end