Exception: HTTPX::HTTPError

Inherits:
Error
  • Object
show all
Defined in:
lib/httpx/errors.rb

Overview

The exception class for HTTP responses with 4xx or 5xx status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ HTTPError

Creates the instance and assigns the HTTPX::Response response.



97
98
99
100
# File 'lib/httpx/errors.rb', line 97

def initialize(response)
  @response = response
  super("HTTP Error: #{@response.status} #{@response.headers}\n#{@response.body}")
end

Instance Attribute Details

#responseObject (readonly)

The HTTPX::Response response object this exception refers to.



94
95
96
# File 'lib/httpx/errors.rb', line 94

def response
  @response
end

Instance Method Details

#statusObject

The HTTP response status.

error.status #=> 404


105
106
107
# File 'lib/httpx/errors.rb', line 105

def status
  @response.status
end