Exception: JsonApiClient::Errors::UnexpectedStatus
- Inherits:
-
ServerError
- Object
- StandardError
- ApiError
- ServerError
- JsonApiClient::Errors::UnexpectedStatus
- Defined in:
- lib/json_api_client/errors.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Attributes inherited from ApiError
Instance Method Summary collapse
-
#initialize(code, uri) ⇒ UnexpectedStatus
constructor
A new instance of UnexpectedStatus.
Constructor Details
#initialize(code, uri) ⇒ UnexpectedStatus
Returns a new instance of UnexpectedStatus.
77 78 79 80 81 82 83 |
# File 'lib/json_api_client/errors.rb', line 77 def initialize(code, uri) @code = code @uri = uri msg = "Unexpected response status: #{code} from: #{uri.to_s}" super nil, msg end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
76 77 78 |
# File 'lib/json_api_client/errors.rb', line 76 def code @code end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
76 77 78 |
# File 'lib/json_api_client/errors.rb', line 76 def uri @uri end |