Exception: Shikibu::RecurSignal

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

Overview

Internal signal for workflow recurrence (tail recursion)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(new_input) ⇒ RecurSignal

Returns a new instance of RecurSignal.



132
133
134
135
# File 'lib/shikibu/errors.rb', line 132

def initialize(new_input)
  @new_input = new_input
  super('Workflow recurrence requested')
end

Instance Attribute Details

#new_inputObject (readonly)

Returns the value of attribute new_input.



130
131
132
# File 'lib/shikibu/errors.rb', line 130

def new_input
  @new_input
end