Exception: WebexXmlApi::RequestFailed Abstract
- Defined in:
- lib/webex_xml_api/exceptions.rb
Overview
This class is abstract.
Exception raised if request against WebEx Service failed
Instance Attribute Summary collapse
-
#response ⇒ Hash
readonly
Returns the error received by WebEx XML API Service.
Instance Method Summary collapse
-
#initialize(response) ⇒ RequestFailed
constructor
Instantiate an instance of RequestFailed with error Object.
Constructor Details
#initialize(response) ⇒ RequestFailed
Instantiate an instance of RequestFailed with error Object
17 18 19 |
# File 'lib/webex_xml_api/exceptions.rb', line 17 def initialize(response) @response ||= response end |
Instance Attribute Details
#response ⇒ Hash (readonly)
Returns the error received by WebEx XML API Service
13 14 15 |
# File 'lib/webex_xml_api/exceptions.rb', line 13 def response @response end |