7
8
9
10
11
12
13
14
15
16
|
# File 'lib/faraday/response/raise_http_5xx.rb', line 7
def on_complete(env)
case env[:status].to_i
when 500
raise Cashstar::InternalServerError.new(error_message(env, "Something is technically wrong."), env[:response_headers])
when 502
raise Cashstar::BadGateway.new(error_message(env, "Cashstar is down or being upgraded."), env[:response_headers])
when 503
raise Cashstar::ServiceUnavailable.new(error_message(env, "(__-){ Cashstar is over capacity or a service error occured."), env[:response_headers])
end
end
|