class Dry::Effects::Errors::InvalidValueError

State value has invalid type

@api private

Public Class Methods

new(value, scope) click to toggle source
Calls superclass method
# File lib/dry/effects/errors.rb, line 81
def initialize(value, scope)
  super("#{value.inspect} is invalid and cannot be assigned to #{scope}")
end