Exception: SimpleMessageQueue::NotImplementedError
- Inherits:
-
StandardError
- Object
- StandardError
- SimpleMessageQueue::NotImplementedError
- Defined in:
- lib/simple_message_queue/errors.rb
Instance Method Summary collapse
-
#initialize(name) ⇒ NotImplementedError
constructor
A new instance of NotImplementedError.
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) = "You must define the process_message method for #{name}" super() end |