Exception: Camper::Error::ResponseError

Inherits:
Error
  • Object
show all
Defined in:
lib/camper/error.rb

Overview

Custom error class for rescuing from HTTP response errors.

Constant Summary collapse

POSSIBLE_MESSAGE_KEYS =
%i[message error_description error].freeze

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseError

Returns a new instance of ResponseError.



34
35
36
37
# File 'lib/camper/error.rb', line 34

def initialize(response)
  @response = response
  super(build_error_message)
end

Instance Method Details

#response_messageString

Body content returned in the HTTP response

Returns:



49
50
51
# File 'lib/camper/error.rb', line 49

def response_message
  @response.parsed_response.message
end

#response_statusInteger

Status code returned in the HTTP response.

Returns:

  • (Integer)


42
43
44
# File 'lib/camper/error.rb', line 42

def response_status
  @response.code
end