Exception: StateMachines::InvalidEvent
- Defined in:
- lib/state_machines/error.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:
50 51 52 53 54 |
# File 'lib/state_machines/error.rb', line 50 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
48 49 50 |
# File 'lib/state_machines/error.rb', line 48 def event @event end |