http://www.fatwire.com/schema/rest/1.0
complexType errorBean

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://www.fatwire.com/schema/rest/1.0}errorBean (restriction)

Documentation
        This bean is sent back to a client application when a server-side error occurs.
        This bean is returned for all 500, 304, 401, and some 404 HTTP error codes.
        The application should not rely on this bean to perform different logic,
        but rather HTTP error codes. This bean should be used for debugging and
        troubleshooting purposes only.
      
Properties
This component is not nillable.

Model
<...>
(errorCode, message )
</...>


Nested Element Summary
xs:interrorCode
          The HTTP error code. 
xs:stringmessage
          A description of this error. 
Implementors
errorBean

Source
<xs:complexType name="errorBean">
<xs:sequence>
<xs:element name="errorCode" type="xs:int">
</xs:element>
<xs:element name="message" type="xs:string">
</xs:element>
</xs:sequence>
</xs:complexType>


Copyright \xA9 2013, Oracle and/or its affiliates. All Rights Reserved.