Exception: JSONAPI::Consumer::Errors::UnexpectedStatus
- Inherits:
-
ServerError
- Object
- StandardError
- ApiError
- ServerError
- JSONAPI::Consumer::Errors::UnexpectedStatus
- Defined in:
- lib/jsonapi/consumer/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.
- #message ⇒ Object
Constructor Details
#initialize(code, uri) ⇒ UnexpectedStatus
Returns a new instance of UnexpectedStatus.
46 47 48 49 |
# File 'lib/jsonapi/consumer/errors.rb', line 46 def initialize(code, uri) @code = code @uri = uri end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
45 46 47 |
# File 'lib/jsonapi/consumer/errors.rb', line 45 def code @code end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
45 46 47 |
# File 'lib/jsonapi/consumer/errors.rb', line 45 def uri @uri end |
Instance Method Details
#message ⇒ Object
50 51 52 |
# File 'lib/jsonapi/consumer/errors.rb', line 50 def "Unexpected response status: #{code} from: #{uri.to_s}" end |