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.



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

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.



613
614
615
# File 'lib/g4s/tracking/default.rb', line 613

def errorCode
  @errorCode
end

#errorDescriptionObject

Returns the value of attribute errorDescription.



614
615
616
# File 'lib/g4s/tracking/default.rb', line 614

def errorDescription
  @errorDescription
end

#innerExceptionObject

Returns the value of attribute innerException.



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

def innerException
  @innerException
end

#statusObject

Returns the value of attribute status.



615
616
617
# File 'lib/g4s/tracking/default.rb', line 615

def status
  @status
end