Exception: StateMachine::InvalidEvent
- Defined in:
- lib/state_machine/event.rb
Overview
An invalid event was specified
Instance Attribute Summary collapse
-
#event ⇒ Object
readonly
The event that was attempted to be run.
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(object, event_name) ⇒ InvalidEvent
constructor
:nodoc:.
Constructor Details
#initialize(object, event_name) ⇒ InvalidEvent
:nodoc:
13 14 15 16 17 |
# File 'lib/state_machine/event.rb', line 13 def initialize(object, event_name) #:nodoc: @event = event_name super(object, "#{event.inspect} is an unknown state machine event") end |
Instance Attribute Details
#event ⇒ Object (readonly)
The event that was attempted to be run
11 12 13 |
# File 'lib/state_machine/event.rb', line 11 def event @event end |