9
10
11
12
13
14
15
16
17
18
|
# File 'lib/angellist_api/response/raise_server_error.rb', line 9
def on_complete(env)
case env[:status].to_i
when 500
raise AngellistApi::Error::InternalServerError.new(error_message(env, "Something is technically wrong."), env[:response_headers])
when 502
raise AngellistApi::Error::BadGateway.new(error_message(env, "AngellistApi is down or being upgraded."), env[:response_headers])
when 503
raise AngellistApi::Error::ServiceUnavailable.new(error_message(env, "(__-){ AngellistApi is over capacity."), env[:response_headers])
end
end
|