Faraday::Response::Middleware
# File lib/faraday/response/raise_error.rb, line 3 def on_complete(env) case env[:status] when 404 raise Faraday::Error::ResourceNotFound, response_values(env) when 400...600 raise Faraday::Error::ClientError, response_values(env) end end
# File lib/faraday/response/raise_error.rb, line 12 def response_values(env) {:status => env[:status], :headers => env[:response_headers], :body => env[:body]} end
[Validate]
Generated with the Darkfish Rdoc Generator 2.