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