Exception: Viewpoint::EWS::Errors::SoapResponseError
- Inherits:
-
ResponseError
- Object
- RuntimeError
- ResponseError
- Viewpoint::EWS::Errors::SoapResponseError
- Defined in:
- lib/ews/errors.rb
Instance Attribute Summary collapse
-
#faultcode ⇒ Object
readonly
Returns the value of attribute faultcode.
-
#faultstring ⇒ Object
readonly
Returns the value of attribute faultstring.
Attributes inherited from ResponseError
Instance Method Summary collapse
-
#initialize(message, response, faultcode, faultstring) ⇒ SoapResponseError
constructor
A new instance of SoapResponseError.
Methods inherited from ResponseError
Constructor Details
#initialize(message, response, faultcode, faultstring) ⇒ SoapResponseError
Returns a new instance of SoapResponseError.
50 51 52 53 54 |
# File 'lib/ews/errors.rb', line 50 def initialize(, response, faultcode, faultstring) super(, response) @faultcode = faultcode @faultstring = faultstring end |
Instance Attribute Details
#faultcode ⇒ Object (readonly)
Returns the value of attribute faultcode.
47 48 49 |
# File 'lib/ews/errors.rb', line 47 def faultcode @faultcode end |
#faultstring ⇒ Object (readonly)
Returns the value of attribute faultstring.
47 48 49 |
# File 'lib/ews/errors.rb', line 47 def faultstring @faultstring end |