Exception: AcidicJob::SucceededStepError
- Defined in:
- lib/acidic_job/errors.rb
Instance Method Summary collapse
-
#initialize(step) ⇒ SucceededStepError
constructor
A new instance of SucceededStepError.
- #message ⇒ Object
Constructor Details
#initialize(step) ⇒ SucceededStepError
Returns a new instance of SucceededStepError.
75 76 77 78 |
# File 'lib/acidic_job/errors.rb', line 75 def initialize(step) super @step = step end |
Instance Method Details
#message ⇒ Object
80 81 82 |
# File 'lib/acidic_job/errors.rb', line 80 def "workflow has already recorded this step as succeeded: #{@step.inspect}" end |