Class: Twitter::Response::RaiseServerError

Inherits:
Faraday::Response::Middleware
  • Object
show all
Defined in:
lib/twitter/response/raise_server_error.rb

Instance Method Summary collapse

Instance Method Details

#on_complete(env) ⇒ Object



10
11
12
13
14
15
16
17
18
19
# File 'lib/twitter/response/raise_server_error.rb', line 10

def on_complete(env)
  case env[:status].to_i
  when 500
    raise Twitter::Error::InternalServerError.new("Something is technically wrong.", env[:response_headers])
  when 502
    raise Twitter::Error::BadGateway.new("Twitter is down or being upgraded.", env[:response_headers])
  when 503
    raise Twitter::Error::ServiceUnavailable.new("(__-){ Twitter is over capacity.", env[:response_headers])
  end
end