Exception: Flows::Operation::NoStepImplementationError
- Defined in:
- lib/flows/operation/errors.rb
Instance Method Summary collapse
-
#initialize(step_name) ⇒ NoStepImplementationError
constructor
A new instance of NoStepImplementationError.
- #message ⇒ Object
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
#message ⇒ Object
27 28 29 |
# File 'lib/flows/operation/errors.rb', line 27 def "Missing step implementation for #{@step_name}" end |