7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/faraday/response/raise_getty_connect_error.rb', line 7
def on_complete(response)
case response[:status].to_i
when 400
raise GettyConnect::BadRequest, error_message(response)
when 401
raise GettyConnect::Unauthorized, error_message(response)
when 403
raise GettyConnect::Forbidden, error_message(response)
when 404
raise GettyConnect::NotFound, error_message(response)
when 406
raise GettyConnect::NotAcceptable, error_message(response)
when 422
raise GettyConnect::UnprocessableEntity, error_message(response)
when 500
raise GettyConnect::InternalServerError, error_message(response)
when 501
raise GettyConnect::NotImplemented, error_message(response)
when 502
raise GettyConnect::BadGateway, error_message(response)
when 503
raise GettyConnect::ServiceUnavailable, error_message(response)
end
end
|