Class: ApiFault
- Inherits:
-
Object
- Object
- ApiFault
- Defined in:
- lib/stub/default.rb
Overview
urn:faulturn:fault.wsurn:fault.ws.rsysurn:fault.ws.rsys.comApiFault
exceptionCode - ExceptionCode
exceptionMessage - SOAP::SOAPString
Instance Attribute Summary collapse
-
#exceptionCode ⇒ Object
Returns the value of attribute exceptionCode.
-
#exceptionMessage ⇒ Object
Returns the value of attribute exceptionMessage.
Instance Method Summary collapse
-
#initialize(exceptionCode = nil, exceptionMessage = nil) ⇒ ApiFault
constructor
A new instance of ApiFault.
Constructor Details
#initialize(exceptionCode = nil, exceptionMessage = nil) ⇒ ApiFault
Returns a new instance of ApiFault.
720 721 722 723 |
# File 'lib/stub/default.rb', line 720 def initialize(exceptionCode = nil, exceptionMessage = nil) @exceptionCode = exceptionCode @exceptionMessage = exceptionMessage end |
Instance Attribute Details
#exceptionCode ⇒ Object
Returns the value of attribute exceptionCode.
717 718 719 |
# File 'lib/stub/default.rb', line 717 def exceptionCode @exceptionCode end |
#exceptionMessage ⇒ Object
Returns the value of attribute exceptionMessage.
718 719 720 |
# File 'lib/stub/default.rb', line 718 def exceptionMessage @exceptionMessage end |