Exception: AcidicJob::UndefinedMethodError
- Defined in:
- lib/acidic_job/errors.rb
Instance Method Summary collapse
-
#initialize(step) ⇒ UndefinedMethodError
constructor
A new instance of UndefinedMethodError.
- #message ⇒ Object
Constructor Details
#initialize(step) ⇒ UndefinedMethodError
Returns a new instance of UndefinedMethodError.
86 87 88 89 |
# File 'lib/acidic_job/errors.rb', line 86 def initialize(step) super @step = step end |
Instance Method Details
#message ⇒ Object
91 92 93 |
# File 'lib/acidic_job/errors.rb', line 91 def "Undefined step method: #{@step.inspect}" end |