Exception: EnumStateMachine::InvalidParallelTransition

Inherits:
Error
  • Object
show all
Defined in:
lib/enum_state_machine/transition.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:



51
52
53
54
55
# File 'lib/enum_state_machine/transition.rb', line 51

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)



49
50
51
# File 'lib/enum_state_machine/transition.rb', line 49

def events
  @events
end