Exception: AcidicJob::UndefinedMethodError

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

Instance Method Summary collapse

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

#messageObject



91
92
93
# File 'lib/acidic_job/errors.rb', line 91

def message
  "Undefined step method: #{@step.inspect}"
end