Exception: CircuitApi::HttpError
- Inherits:
-
StandardError
- Object
- StandardError
- CircuitApi::HttpError
- Defined in:
- lib/circuit_api/utils/errors.rb
Overview
Network Errors
Direct Known Subclasses
BadRequest, InternalServerError, ServiceUnavailable, Unauthorized
Instance Attribute Summary collapse
-
#error_body ⇒ Object
readonly
Returns the value of attribute error_body.
-
#error_code ⇒ Object
readonly
Returns the value of attribute error_code.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(code, body, uri) ⇒ HttpError
constructor
A new instance of HttpError.
- #json_message ⇒ Object
- #message ⇒ Object
Constructor Details
#initialize(code, body, uri) ⇒ HttpError
Returns a new instance of HttpError.
6 7 8 9 10 |
# File 'lib/circuit_api/utils/errors.rb', line 6 def initialize(code, body, uri) @error_code = code @error_body = body @uri = uri end |
Instance Attribute Details
#error_body ⇒ Object (readonly)
Returns the value of attribute error_body.
4 5 6 |
# File 'lib/circuit_api/utils/errors.rb', line 4 def error_body @error_body end |
#error_code ⇒ Object (readonly)
Returns the value of attribute error_code.
4 5 6 |
# File 'lib/circuit_api/utils/errors.rb', line 4 def error_code @error_code end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
4 5 6 |
# File 'lib/circuit_api/utils/errors.rb', line 4 def uri @uri end |
Instance Method Details
#json_message ⇒ Object
16 17 18 |
# File 'lib/circuit_api/utils/errors.rb', line 16 def JSON.parse(error_body) end |
#message ⇒ Object
12 13 14 |
# File 'lib/circuit_api/utils/errors.rb', line 12 def "HTTP #{error_code} - URI: #{uri}.\n Error: #{error_body}" end |