class Dry::Transaction::InvalidStepError

Public Class Methods

new(step_name) click to toggle source
Calls superclass method
# File lib/dry/transaction/errors.rb, line 6
def initialize(step_name)
  super("step +`#{step_name}`+ must respond to `#call`")
end