class Porch::InvalidStepTypeError

Attributes

step[R]

Public Class Methods

new(step) click to toggle source
Calls superclass method
# File lib/porch/errors/invalid_step_type_error.rb, line 5
def initialize(step)
  @step = step
  super "Step type #{step.class.name} is not handled"
end