Exception: Burstflow::Workflow::InternalError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/burstflow/workflow/exception.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(workflow, message) ⇒ InternalError

Returns a new instance of InternalError.



4
5
6
7
# File 'lib/burstflow/workflow/exception.rb', line 4

def initialize(workflow, message)
  @workflow = workflow
  super(message)
end

Instance Attribute Details

#workflowObject

Returns the value of attribute workflow.



2
3
4
# File 'lib/burstflow/workflow/exception.rb', line 2

def workflow
  @workflow
end