class Telleroo::Response::RaiseClientError

Handles API Response Errors

Public Instance Methods

on_complete(env) click to toggle source
# File lib/telleroo/response/raise_client_error.rb, line 8
def on_complete(env)
  status  = env[:status].to_i
  body    = env[:body]
  headers = env[:response_headers]

  case status
  when 401
    raise Telleroo::Error::Unauthorized.new body, headers
  when 406
    raise Telleroo::Error::NotAcceptable.new body, headers
  when 422
    raise Telleroo::Error::Unprocessable.new body, headers
  when 429
    raise Telleroo::Error::RateLimit.new body, headers
  end
end