Class: AdvancedBilling::CustomerErrorResponseException
- Inherits:
-
APIException
- Object
- CoreLibrary::ApiException
- APIException
- AdvancedBilling::CustomerErrorResponseException
- Defined in:
- lib/advanced_billing/exceptions/customer_error_response_exception.rb
Overview
Customer Error Response class.
Instance Attribute Summary collapse
-
#errors ⇒ Object
TODO: Write general description for this method.
Instance Method Summary collapse
-
#initialize(reason, response) ⇒ CustomerErrorResponseException
constructor
The constructor.
-
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash.
Constructor Details
#initialize(reason, response) ⇒ CustomerErrorResponseException
The constructor.
19 20 21 22 23 |
# File 'lib/advanced_billing/exceptions/customer_error_response_exception.rb', line 19 def initialize(reason, response) super(reason, response) hash = APIHelper.json_deserialize(@response.raw_body) unbox(hash) end |
Instance Attribute Details
#errors ⇒ Object
TODO: Write general description for this method
14 15 16 |
# File 'lib/advanced_billing/exceptions/customer_error_response_exception.rb', line 14 def errors @errors end |
Instance Method Details
#unbox(hash) ⇒ Object
Populates this object by extracting properties from a hash. response body.
28 29 30 31 32 |
# File 'lib/advanced_billing/exceptions/customer_error_response_exception.rb', line 28 def unbox(hash) @errors = hash.key?('errors') ? APIHelper.deserialize_union_type( UnionTypeLookUp.get(:CustomerErrorResponseErrors), hash['errors'] ) : SKIP end |