Exception: Flows::Operation::NoStepImplementationError

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

Instance Method Summary collapse

Constructor Details

#initialize(step_name) ⇒ NoStepImplementationError

Returns a new instance of NoStepImplementationError.



23
24
25
# File 'lib/flows/operation/errors.rb', line 23

def initialize(step_name)
  @step_name = step_name
end

Instance Method Details

#messageObject



27
28
29
# File 'lib/flows/operation/errors.rb', line 27

def message
  "Missing step implementation for #{@step_name}"
end