Exception: StateMachines::InvalidParallelTransition

Inherits:
Error
  • Object
show all
Defined in:
lib/state_machines/error.rb

Overview

A set of transition failed to run in parallel

Instance Attribute Summary collapse

Attributes inherited from Error

#object

Instance Method Summary collapse

Constructor Details

#initialize(object, events) ⇒ InvalidParallelTransition

:nodoc:



102
103
104
105
106
# File 'lib/state_machines/error.rb', line 102

def initialize(object, events) #:nodoc:
  @events = events

  super(object, "Cannot run events in parallel: #{events * ', '}")
end

Instance Attribute Details

#eventsObject (readonly)

The set of events that failed the transition(s)



100
101
102
# File 'lib/state_machines/error.rb', line 100

def events
  @events
end