Exception: GdsApi::HTTPErrorResponse

Inherits:
BaseError
  • Object
show all
Defined in:
lib/gds_api/exceptions.rb

Overview

Superclass for all 4XX and 5XX errors

Direct Known Subclasses

HTTPClientError, HTTPServerError

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseError

#sentry_context

Constructor Details

#initialize(code, message = nil, error_details = nil, http_body = nil) ⇒ HTTPErrorResponse

Returns a new instance of HTTPErrorResponse.



28
29
30
31
32
33
# File 'lib/gds_api/exceptions.rb', line 28

def initialize(code, message = nil, error_details = nil, http_body = nil)
  super(message)
  @code = code
  @error_details = error_details
  @http_body = http_body
end

Instance Attribute Details

#codeObject



26
27
28
# File 'lib/gds_api/exceptions.rb', line 26

def code
  @code
end

#error_detailsObject



26
27
28
# File 'lib/gds_api/exceptions.rb', line 26

def error_details
  @error_details
end

#http_bodyObject



26
27
28
# File 'lib/gds_api/exceptions.rb', line 26

def http_body
  @http_body
end