Exception: Notifications::Client::RequestError
- Inherits:
-
StandardError
- Object
- StandardError
- Notifications::Client::RequestError
- Defined in:
- lib/notifications/client/request_error.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(response) ⇒ RequestError
constructor
A new instance of RequestError.
Constructor Details
#initialize(response) ⇒ RequestError
Returns a new instance of RequestError.
6 7 8 9 10 |
# File 'lib/notifications/client/request_error.rb', line 6 def initialize(response) @code = response.code @body = parse_body(response.body) super() end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
4 5 6 |
# File 'lib/notifications/client/request_error.rb', line 4 def body @body end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
4 5 6 |
# File 'lib/notifications/client/request_error.rb', line 4 def code @code end |