Class: HTTPX::ErrorResponse

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
ErrorResponsePatternMatchExtensions, Loggable
Defined in:
lib/httpx/response.rb

Overview

Wraps an error which has happened while processing an HTTP Request. It has partial public API parity with HTTPX::Response, so users should rely on it to infer whether the returned response is one or the other.

response = HTTPX.get("https://some-domain/path") #=> response is HTTPX::Response or HTTPX::ErrorResponse
response.raise_for_status #=> raises if it wraps an error

Constant Summary

Constants included from Loggable

Loggable::COLORS, Loggable::USE_DEBUG_LOG

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ErrorResponsePatternMatchExtensions

#deconstruct, #deconstruct_keys

Methods included from Loggable

#log, #log_exception, #log_redact

Constructor Details

#initialize(request, error) ⇒ ErrorResponse

Returns a new instance of ErrorResponse.



263
264
265
266
267
268
269
# File 'lib/httpx/response.rb', line 263

def initialize(request, error)
  @request = request
  @response = request.response if request.response.is_a?(Response)
  @error = error
  @options = request.options
  log_exception(@error)
end

Instance Attribute Details

#errorObject (readonly)

the wrapped exception.



255
256
257
# File 'lib/httpx/response.rb', line 255

def error
  @error
end

#requestObject (readonly)

the corresponding HTTPX::Request instance.



249
250
251
# File 'lib/httpx/response.rb', line 249

def request
  @request
end

#responseObject (readonly)

the HTTPX::Response instance, when there is one (i.e. error happens fetching the response).



252
253
254
# File 'lib/httpx/response.rb', line 252

def response
  @response
end

Instance Method Details

#<<(data) ⇒ Object

buffers lost chunks to error response



294
295
296
297
298
# File 'lib/httpx/response.rb', line 294

def <<(data)
  return unless @response

  @response << data
end

#closeObject

closes the error resources.



277
278
279
# File 'lib/httpx/response.rb', line 277

def close
  @response.close if @response
end

#finish!Object



286
# File 'lib/httpx/response.rb', line 286

def finish!; end

#finished?Boolean

always true for error responses.

Returns:

  • (Boolean)


282
283
284
# File 'lib/httpx/response.rb', line 282

def finished?
  true
end

#raise_for_statusObject

raises the wrapped exception.

Raises:



289
290
291
# File 'lib/httpx/response.rb', line 289

def raise_for_status
  raise @error
end

#to_sObject

returns the exception full message.



272
273
274
# File 'lib/httpx/response.rb', line 272

def to_s
  @error.full_message(highlight: false)
end