Exception: BPMN::ExecutionError
- Inherits:
-
StandardError
- Object
- StandardError
- BPMN::ExecutionError
- Defined in:
- lib/bpmn/execution.rb
Instance Attribute Summary collapse
-
#execution ⇒ Object
readonly
Returns the value of attribute execution.
Instance Method Summary collapse
-
#initialize(msg, execution: nil) ⇒ ExecutionError
constructor
A new instance of ExecutionError.
Constructor Details
#initialize(msg, execution: nil) ⇒ ExecutionError
Returns a new instance of ExecutionError.
367 368 369 370 |
# File 'lib/bpmn/execution.rb', line 367 def initialize(msg, execution: nil) @execution = execution super(msg) end |
Instance Attribute Details
#execution ⇒ Object (readonly)
Returns the value of attribute execution.
365 366 367 |
# File 'lib/bpmn/execution.rb', line 365 def execution @execution end |