class Dry::Transaction::MissingStepError

Public Class Methods

new(step_name) click to toggle source
Calls superclass method
# File lib/dry/transaction/errors.rb, line 12
def initialize(step_name)
  super("Definition for step +`#{step_name}`+ is missing")
end