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.
83 84 85 86 87 88 89 |
# File 'lib/json_api_client/errors.rb', line 83 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.
82 83 84 |
# File 'lib/json_api_client/errors.rb', line 82 def code @code end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
82 83 84 |
# File 'lib/json_api_client/errors.rb', line 82 def uri @uri end |