class Dry::Effects::Errors::MissingStateError
No state handler
@api private
Public Class Methods
new(effect)
click to toggle source
Calls superclass method
Dry::Effects::Errors::UnhandledEffectError::new
# File lib/dry/effects/errors.rb, line 33 def initialize(effect) message = "Value of +#{effect.scope}+ is not set, "\ "you need to provide value with an effect handler" super(effect, message) end