An invalid transition was attempted
The current state value for the machine
The machine attempting to be transitioned
The event that triggered the failed transition
# File lib/state_machine/transition.rb, line 26 def event @event.name end
The name for the current state
# File lib/state_machine/transition.rb, line 36 def from_name @from_state.name end
The fully-qualified name of the event that triggered the failed transition
# File lib/state_machine/transition.rb, line 31 def qualified_event @event.qualified_name end
The fully-qualified name for the current state
# File lib/state_machine/transition.rb, line 41 def qualified_from_name @from_state.qualified_name end