class ActionOperation::Error::MissingSchema

Public Class Methods

new(step:) click to toggle source
# File lib/action_operation/error/missing_schema.rb, line 4
def initialize(step:)
  @step = step
end

Public Instance Methods

message() click to toggle source
# File lib/action_operation/error/missing_schema.rb, line 8
def message
  "expected to see #{@step.name} have a schema but the receiver (#{@step.receiver.name}) didn't support it"
end