Exception: Camp3::Error::ResponseError
- Defined in:
- lib/camp3/error.rb
Overview
Custom error class for rescuing from HTTP response errors.
Direct Known Subclasses
BadGateway, BadRequest, Conflict, Forbidden, InternalServerError, MethodNotAllowed, NotAcceptable, NotFound, ServiceUnavailable, TooManyRequests, Unauthorized, Unprocessable
Constant Summary collapse
- POSSIBLE_MESSAGE_KEYS =
%i[message error_description error].freeze
Instance Method Summary collapse
-
#initialize(response) ⇒ ResponseError
constructor
A new instance of ResponseError.
-
#response_message ⇒ String
Body content returned in the HTTP response.
-
#response_status ⇒ Integer
Status code returned in the HTTP response.
Constructor Details
#initialize(response) ⇒ ResponseError
Returns a new instance of ResponseError.
21 22 23 24 |
# File 'lib/camp3/error.rb', line 21 def initialize(response) @response = response super() end |
Instance Method Details
#response_message ⇒ String
Body content returned in the HTTP response
36 37 38 |
# File 'lib/camp3/error.rb', line 36 def @response.parsed_response. end |
#response_status ⇒ Integer
Status code returned in the HTTP response.
29 30 31 |
# File 'lib/camp3/error.rb', line 29 def response_status @response.code end |