2.2.4.113 Error

The Error complex type specifies an information container for an error that occurred during the processing of a request.

The following is the XML schema definition of the Error complex type.

   <xs:complexType name="Error">
     <xs:sequence>
       <xs:element minOccurs="0" name="Code" nillable="true" type="xs:string" />
       <xs:element minOccurs="0" name="Context" nillable="true" type="tns:ErrorContext" />
       <xs:element minOccurs="0" name="Description" nillable="true" type="xs:string" />
     </xs:sequence>
   </xs:complexType>

Code: Specifies the error code.

Context: Specifies the context of the error as an ErrorContext complex type.

Description: Specifies the localized description of the error.