Exception: Dry::Transaction::InvalidStepError

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/dry/transaction/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(step_name) ⇒ InvalidStepError

Returns a new instance of InvalidStepError.



6
7
8
# File 'lib/dry/transaction/errors.rb', line 6

def initialize(step_name)
  super("step +`#{step_name}`+ must respond to `#call`")
end