Class: Verizon::WNPRestErrorResponseException
- Inherits:
-
APIException
- Object
- CoreLibrary::ApiException
- APIException
- Verizon::WNPRestErrorResponseException
- Defined in:
- lib/verizon/exceptions/wnp_rest_error_response_exception.rb
Overview
Wireless network performance rest error response.
Instance Attribute Summary collapse
-
#error_code ⇒ String
Rest error response.
-
#error_message ⇒ String
Error message details.
Instance Method Summary collapse
-
#initialize(reason, response) ⇒ WNPRestErrorResponseException
constructor
The constructor.
-
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash.
Constructor Details
#initialize(reason, response) ⇒ WNPRestErrorResponseException
The constructor.
23 24 25 26 27 |
# File 'lib/verizon/exceptions/wnp_rest_error_response_exception.rb', line 23 def initialize(reason, response) super(reason, response) hash = APIHelper.json_deserialize(@response.raw_body) unbox(hash) end |
Instance Attribute Details
#error_code ⇒ String
Rest error response.
14 15 16 |
# File 'lib/verizon/exceptions/wnp_rest_error_response_exception.rb', line 14 def error_code @error_code end |
#error_message ⇒ String
Error message details.
18 19 20 |
# File 'lib/verizon/exceptions/wnp_rest_error_response_exception.rb', line 18 def @error_message end |
Instance Method Details
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash. response body.
32 33 34 35 |
# File 'lib/verizon/exceptions/wnp_rest_error_response_exception.rb', line 32 def unbox(hash) @error_code = hash.key?('errorCode') ? hash['errorCode'] : SKIP @error_message = hash.key?('errorMessage') ? hash['errorMessage'] : SKIP end |