Class: IPSErrors

Inherits:
Object
  • Object
show all
Defined in:
lib/g4s/tracking/default.rb,
lib/g4s/utilities/default.rb

Overview

/IPSErrors

errorCode - SOAP::SOAPString
errorDescription - SOAP::SOAPString
status - SOAP::SOAPBoolean
innerException - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(errorCode = nil, errorDescription = nil, status = nil, innerException = nil) ⇒ IPSErrors

Returns a new instance of IPSErrors.



622
623
624
625
626
627
# File 'lib/g4s/tracking/default.rb', line 622

def initialize(errorCode = nil, errorDescription = nil, status = nil, innerException = nil)
  @errorCode = errorCode
  @errorDescription = errorDescription
  @status = status
  @innerException = innerException
end

Instance Attribute Details

#errorCodeObject

Returns the value of attribute errorCode.



617
618
619
# File 'lib/g4s/tracking/default.rb', line 617

def errorCode
  @errorCode
end

#errorDescriptionObject

Returns the value of attribute errorDescription.



618
619
620
# File 'lib/g4s/tracking/default.rb', line 618

def errorDescription
  @errorDescription
end

#innerExceptionObject

Returns the value of attribute innerException.



620
621
622
# File 'lib/g4s/tracking/default.rb', line 620

def innerException
  @innerException
end

#statusObject

Returns the value of attribute status.



619
620
621
# File 'lib/g4s/tracking/default.rb', line 619

def status
  @status
end