Exception: SuggestGrid::LimitExceededErrorResponse
- Inherits:
-
APIException
- Object
- StandardError
- APIException
- SuggestGrid::LimitExceededErrorResponse
- Defined in:
- lib/suggestgrid/exceptions/limit_exceeded_error_response.rb
Overview
Error response.
Instance Attribute Summary collapse
-
#error_description ⇒ String
Description of the response.
-
#error_text ⇒ String
Message of the response.
-
#error_uri ⇒ String
The URI of the error for more details.
-
#limit ⇒ Long
The limit quantity of the account.
-
#used ⇒ Long
The quantity used by the account.
Attributes inherited from APIException
Instance Method Summary collapse
-
#initialize(reason, context) ⇒ LimitExceededErrorResponse
constructor
The constructor.
-
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash.
Constructor Details
#initialize(reason, context) ⇒ LimitExceededErrorResponse
The constructor.
30 31 32 33 34 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 30 def initialize(reason, context) super(reason, context) hash = APIHelper.json_deserialize(@context.response.raw_body) unbox(hash) end |
Instance Attribute Details
#error_description ⇒ String
Description of the response.
13 14 15 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 13 def error_description @error_description end |
#error_text ⇒ String
Message of the response.
9 10 11 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 9 def error_text @error_text end |
#error_uri ⇒ String
The URI of the error for more details.
17 18 19 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 17 def error_uri @error_uri end |
#limit ⇒ Long
The limit quantity of the account.
25 26 27 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 25 def limit @limit end |
#used ⇒ Long
The quantity used by the account.
21 22 23 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 21 def used @used end |
Instance Method Details
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash. response body.
39 40 41 42 43 44 45 |
# File 'lib/suggestgrid/exceptions/limit_exceeded_error_response.rb', line 39 def unbox(hash) @error_text = hash['error_text'] @error_description = hash['error_description'] @error_uri = hash['error_uri'] @used = hash['used'] @limit = hash['limit'] end |