Exception: Shikibu::WorkflowNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/shikibu/errors.rb

Overview

Raised when a workflow is not found

Instance Attribute Summary collapse

Instance Method Summary collapse

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_idObject (readonly)

Returns the value of attribute instance_id.



85
86
87
# File 'lib/shikibu/errors.rb', line 85

def instance_id
  @instance_id
end