Exception: ConvenientService::Service::Plugins::CanHaveFallbacks::Exceptions::ServiceFallbackReturnValueNotSuccess

Inherits:
Exception
  • Object
show all
Defined in:
lib/convenient_service/service/plugins/can_have_fallbacks/exceptions.rb

Instance Method Summary collapse

Methods inherited from Exception

new

Instance Method Details

#initialize_with_kwargs(service:, result:, status:) ⇒ Object



30
31
32
33
34
35
36
37
38
39
# File 'lib/convenient_service/service/plugins/can_have_fallbacks/exceptions.rb', line 30

def initialize_with_kwargs(service:, result:, status:)
  message = <<~TEXT
    Return value of service `#{service.class}`#{enclose(status, " ")}fallback is NOT a `success`.
    It is `#{result.status}`.

    Did you accidentally call `failure` or `error` instead of `success` from the `fallback#{enclose(status, "_")}result` method?
  TEXT

  initialize(message)
end