Exception: Shikibu::WorkflowNotFoundError
- Defined in:
- lib/shikibu/errors.rb
Overview
Raised when a workflow is not found
Instance Attribute Summary collapse
-
#instance_id ⇒ Object
readonly
Returns the value of attribute instance_id.
Instance Method Summary collapse
-
#initialize(instance_id) ⇒ WorkflowNotFoundError
constructor
A new instance of WorkflowNotFoundError.
Constructor Details
#initialize(instance_id) ⇒ WorkflowNotFoundError
Returns a new instance of WorkflowNotFoundError.
87 88 89 90 |
# File 'lib/shikibu/errors.rb', line 87 def initialize(instance_id) @instance_id = instance_id super("Workflow #{instance_id} not found") end |
Instance Attribute Details
#instance_id ⇒ Object (readonly)
Returns the value of attribute instance_id.
85 86 87 |
# File 'lib/shikibu/errors.rb', line 85 def instance_id @instance_id end |