Exception: ActionConductor::UndefinedInheritedMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(method) ⇒ UndefinedInheritedMethod

Returns a new instance of UndefinedInheritedMethod.



3
4
5
# File 'lib/action_conductor/errors/undefined_inherited_method.rb', line 3

def initialize(method)
  super("#{method} should have been defined by the conductor")
end