Exception: Workflow::Errors::NoTransitionsDefinedError

Inherits:
WorkflowDefinitionError show all
Defined in:
lib/workflow/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(state, event) ⇒ NoTransitionsDefinedError

Returns a new instance of NoTransitionsDefinedError.



20
21
22
# File 'lib/workflow/errors.rb', line 20

def initialize(state, event)
  super("No transitions defined for event [#{event.name}] on state [#{state.name}]")
end