Exception: Inforouter::Errors::UnexpectedSOAPResponse
- Inherits:
-
InforouterError
- Object
- StandardError
- InforouterError
- Inforouter::Errors::UnexpectedSOAPResponse
- Defined in:
- lib/inforouter/errors/unexpected_soap_response_error.rb
Overview
This error is raised when infoRouter returns an unexpected SOAP response.
Constant Summary
Constants inherited from InforouterError
Instance Method Summary collapse
-
#initialize(raw, key, chain) ⇒ UnexpectedSOAPResponse
constructor
A new instance of UnexpectedSOAPResponse.
Methods inherited from InforouterError
Constructor Details
#initialize(raw, key, chain) ⇒ UnexpectedSOAPResponse
Returns a new instance of UnexpectedSOAPResponse.
9 10 11 12 13 14 15 |
# File 'lib/inforouter/errors/unexpected_soap_response_error.rb', line 9 def initialize(raw, key, chain) super(('unexpected_soap_response', key: key, raw: raw, chain: chain )) end |