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

#raven_context

Constructor Details

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

Returns a new instance of HTTPErrorResponse.



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

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

Instance Attribute Details

#codeObject

Returns the value of attribute code.



22
23
24
# File 'lib/gds_api/exceptions.rb', line 22

def code
  @code
end

#error_detailsObject

Returns the value of attribute error_details.



22
23
24
# File 'lib/gds_api/exceptions.rb', line 22

def error_details
  @error_details
end