Exception: AcidicJob::UndefinedStepError
- Defined in:
- lib/acidic_job/errors.rb
Instance Method Summary collapse
-
#initialize(step) ⇒ UndefinedStepError
constructor
A new instance of UndefinedStepError.
- #message ⇒ Object
Constructor Details
#initialize(step) ⇒ UndefinedStepError
Returns a new instance of UndefinedStepError.
64 65 66 67 |
# File 'lib/acidic_job/errors.rb', line 64 def initialize(step) super @step = step end |
Instance Method Details
#message ⇒ Object
69 70 71 |
# File 'lib/acidic_job/errors.rb', line 69 def "workflow does not reference this step: #{@step.inspect}" end |