Exception: Pymn::ChainOfResponsibility::CommandNotHandledError

Inherits:
Exception
  • Object
show all
Defined in:
lib/pymn/chain_of_responsibility/command_not_handled_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(method) ⇒ CommandNotHandledError

Returns a new instance of CommandNotHandledError.



4
5
6
# File 'lib/pymn/chain_of_responsibility/command_not_handled_error.rb', line 4

def initialize(method)
  super("'#{method}' could not be handled")
end