8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/qbo_api/raise_http_exception.rb', line 8
def call(env)
@app.call(env).on_complete do |response|
case response.status
when 200
raise QboApi::BadRequest.new(error_message(response)) if response.body =~ /Fault.*Error.*Message/
when 400
raise QboApi::BadRequest.new(error_message(response))
when 401
raise QboApi::Unauthorized.new(error_message(response))
when 403
raise QboApi::Forbidden.new(error_message(response))
when 404
raise QboApi::NotFound.new(error_message(response))
when 500
raise QboApi::InternalServerError.new(error_message(response))
when 503
raise QboApi::ServiceUnavailable.new(error_message(response))
end
end
end
|