Exception: ObjectFault
- Inherits:
-
StandardError
- Object
- StandardError
- ObjectFault
- Includes:
- RubyFriendlyMethods
- Defined in:
- lib/stub/default.rb
Overview
urn:faulturn:fault.wsurn:fault.ws.rsysurn:fault.ws.rsys.comObjectFault
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) ⇒ ObjectFault
constructor
A new instance of ObjectFault.
Methods included from RubyFriendlyMethods
#exception_code, #exception_message
Constructor Details
#initialize(exceptionCode = nil, exceptionMessage = nil) ⇒ ObjectFault
Returns a new instance of ObjectFault.
2361 2362 2363 2364 |
# File 'lib/stub/default.rb', line 2361 def initialize(exceptionCode = nil, exceptionMessage = nil) @exceptionCode = exceptionCode @exceptionMessage = exceptionMessage end |
Instance Attribute Details
#exceptionCode ⇒ Object
Returns the value of attribute exceptionCode.
2358 2359 2360 |
# File 'lib/stub/default.rb', line 2358 def exceptionCode @exceptionCode end |
#exceptionMessage ⇒ Object
Returns the value of attribute exceptionMessage.
2359 2360 2361 |
# File 'lib/stub/default.rb', line 2359 def exceptionMessage @exceptionMessage end |