PrevNextUpHome SophiaFramework UNIVERSE 5.3
SFCErrorEnum
Error code constants.
enum SFCErrorEnum {
    // BREW Errors
    SFERR_NO_ERROR                  = SUCCESS,
    SFERR_FAILED                    = EFAILED,
    
    SFERR_NO_MEMORY                 = ENOMEMORY,
    SFERR_INVALID_STATE             = EBADSTATE,
    SFERR_INVALID_PARAM             = EBADPARM,
    SFERR_INVALID_FORMAT            = EINVALIDFORMAT,
    SFERR_INVALID_MEMORY            = EMEMPTR,
    SFERR_UNSUPPORTED               = EUNSUPPORTED,
    SFERR_CLASS_UNSUPPORTED         = ECLASSNOTSUPPORT,
 
 
    // SophiaFramework Protocol Class Errors[0x6800 - 0x68FF]
    SFERR_PROTOCOL_CLASS_BEGIN                  = 0x6800,
    SFERR_MAIL_INVALID_PASSWORD                 = SFERR_PROTOCOL_CLASS_BEGIN + 0x01, 
    SFERR_MAIL_NOT_SUPPORT_UIDL                 = SFERR_PROTOCOL_CLASS_BEGIN + 0x02, 
    SFERR_PROTOCOL_CLASS_END                    = 0x68FF,
    
    // SophiaFramework General Class Errors[0x6900 - 0x69FF]
    SFERR_GENERAL_CLASS_BEGIN                   = 0x6900,
    SFERR_XML_BAD_VERSION                       = SFERR_GENERAL_CLASS_BEGIN + 0x01,
    SFERR_XML_BAD_ENCODING                      = SFERR_GENERAL_CLASS_BEGIN + 0x02,
    SFERR_XML_BAD_STANDALONE                    = SFERR_GENERAL_CLASS_BEGIN + 0x03,
    SFERR_XML_BAD_SEQUENCE                      = SFERR_GENERAL_CLASS_BEGIN + 0x04,
    SFERR_XML_BAD_ATTRDEFTYPE                   = SFERR_GENERAL_CLASS_BEGIN + 0x05,
    SFERR_XML_BAD_XSITYPE                       = SFERR_GENERAL_CLASS_BEGIN + 0x06,
    SFERR_XML_BAD_ATTRTYPE                      = SFERR_GENERAL_CLASS_BEGIN + 0x07,
    SFERR_XML_EXPECT_EQUALSIGN                  = SFERR_GENERAL_CLASS_BEGIN + 0x08,
    SFERR_XML_EXPECT_NOTATIONNAME               = SFERR_GENERAL_CLASS_BEGIN + 0x09,
    SFERR_XML_EXPECT_ATTRNAME                   = SFERR_GENERAL_CLASS_BEGIN + 0x0A,
    SFERR_XML_EXPECT_DEFAULTATTR                = SFERR_GENERAL_CLASS_BEGIN + 0x0B,
    SFERR_XML_EXPECT_DECLSTRING                 = SFERR_GENERAL_CLASS_BEGIN + 0x0C,
    SFERR_XML_EXPECT_ELEMENTNAME                = SFERR_GENERAL_CLASS_BEGIN + 0x0D,
    SFERR_XML_EXPECT_PINAME                     = SFERR_GENERAL_CLASS_BEGIN + 0x0E,
    SFERR_XML_EXPECT_WHITESPACE                 = SFERR_GENERAL_CLASS_BEGIN + 0x0F,
    SFERR_XML_EXPECT_ATTRTYPE                   = SFERR_GENERAL_CLASS_BEGIN + 0x10,
    SFERR_XML_EXPECT_ATTRVALUE                  = SFERR_GENERAL_CLASS_BEGIN + 0x11,
    SFERR_XML_EXPECT_ENDTAG                     = SFERR_GENERAL_CLASS_BEGIN + 0x12,
    SFERR_XML_EXPECT_PENAME                     = SFERR_GENERAL_CLASS_BEGIN + 0x13,
    SFERR_XML_EXPECT_ENTITYNAME                 = SFERR_GENERAL_CLASS_BEGIN + 0x14,
    SFERR_XML_EXPECT_ENUMPIPE                   = SFERR_GENERAL_CLASS_BEGIN + 0x15,
    SFERR_XML_EXPECT_ENUMVALUE                  = SFERR_GENERAL_CLASS_BEGIN + 0x16,
    SFERR_XML_EXPECT_SEQCHOICE                  = SFERR_GENERAL_CLASS_BEGIN + 0x17,
    SFERR_XML_EXPECT_ASTERISK                   = SFERR_GENERAL_CLASS_BEGIN + 0x18,
    SFERR_XML_EXPECT_OPENSIGN                   = SFERR_GENERAL_CLASS_BEGIN + 0x19,
    SFERR_XML_EXPECT_ENDSIGN                    = SFERR_GENERAL_CLASS_BEGIN + 0x1A,
    SFERR_XML_EXPECT_NDATA                      = SFERR_GENERAL_CLASS_BEGIN + 0x1B,
    SFERR_XML_EXPECT_ENTITYVALUE                = SFERR_GENERAL_CLASS_BEGIN + 0x1C,
    SFERR_XML_EXPECT_QUOTEDSTRING               = SFERR_GENERAL_CLASS_BEGIN + 0x1D,
    SFERR_XML_EXPECT_XMLVERSION                 = SFERR_GENERAL_CLASS_BEGIN + 0x1E,
    SFERR_XML_EXPECT_ENCODING                   = SFERR_GENERAL_CLASS_BEGIN + 0x1F,
    SFERR_XML_EXPECT_COLON                      = SFERR_GENERAL_CLASS_BEGIN + 0x20,
    SFERR_XML_EXPECT_SCHEMALOCATION             = SFERR_GENERAL_CLASS_BEGIN + 0x21,
    SFERR_XML_EXPECT_NAMEREF                    = SFERR_GENERAL_CLASS_BEGIN + 0x22,
    SFERR_XML_EXPECT_SIMPLETYPE_CONTENT         = SFERR_GENERAL_CLASS_BEGIN + 0x23,
    SFERR_XML_EXPECT_SIMPLETYPE_INLIST          = SFERR_GENERAL_CLASS_BEGIN + 0x24,
    SFERR_XML_EXPECT_SIMPLETYPE_INRESTRICTION   = SFERR_GENERAL_CLASS_BEGIN + 0x25,
    SFERR_XML_EXPECT_SIMPLETYPE_INUNION         = SFERR_GENERAL_CLASS_BEGIN + 0x26,
    SFERR_XML_EXPECT_ATOMIC_ITEMTYPE            = SFERR_GENERAL_CLASS_BEGIN + 0x27,
    SFERR_XML_EXPECT_BASETYPE                   = SFERR_GENERAL_CLASS_BEGIN + 0x28,
    SFERR_XML_EXPECT_DERIVED_TYPE               = SFERR_GENERAL_CLASS_BEGIN + 0x29,
    SFERR_XML_EXPECT_DATATYPEVALIDATOR          = SFERR_GENERAL_CLASS_BEGIN + 0x2A,
    SFERR_XML_EXPECT_SEQUENCECOMMA              = SFERR_GENERAL_CLASS_BEGIN + 0x2B,
    SFERR_XML_EXPECT_WS_COLLAPSE                = SFERR_GENERAL_CLASS_BEGIN + 0x2C,
    SFERR_XML_UNTERMINATED_STARTTAG             = SFERR_GENERAL_CLASS_BEGIN + 0x2D,
    SFERR_XML_UNTERMINATED_PI                   = SFERR_GENERAL_CLASS_BEGIN + 0x2E,
    SFERR_XML_UNTERMINATED_COMMENT              = SFERR_GENERAL_CLASS_BEGIN + 0x2F,
    SFERR_XML_UNTERMINATED_ELEMENTDECL          = SFERR_GENERAL_CLASS_BEGIN + 0x30,
    SFERR_XML_UNTERMINATED_ENTITYDECL           = SFERR_GENERAL_CLASS_BEGIN + 0x31,
    SFERR_XML_UNTERMINATED_NOTATIONDECL         = SFERR_GENERAL_CLASS_BEGIN + 0x32,
    SFERR_XML_UNTERMINATED_XMLDECL              = SFERR_GENERAL_CLASS_BEGIN + 0x33,
    SFERR_XML_UNTERMINATED_ENTITYREF            = SFERR_GENERAL_CLASS_BEGIN + 0x34,
    SFERR_XML_UNTERMINATED_CDATA                = SFERR_GENERAL_CLASS_BEGIN + 0x35,
    SFERR_XML_UNSUPPORT_XMLVERSION              = SFERR_GENERAL_CLASS_BEGIN + 0x36,
    SFERR_XML_UNSUPPORT_FEATURE                 = SFERR_GENERAL_CLASS_BEGIN + 0x37,
    SFERR_XML_INVALID_CHARREF                   = SFERR_GENERAL_CLASS_BEGIN + 0x38,
    SFERR_XML_INVALID_ATTRVALUE                 = SFERR_GENERAL_CLASS_BEGIN + 0x39,
    SFERR_XML_INVALID_ELEMENTNAME               = SFERR_GENERAL_CLASS_BEGIN + 0x3A,
    SFERR_XML_INVALID_ENTITYREFNAME             = SFERR_GENERAL_CLASS_BEGIN + 0x3B,
    SFERR_XML_INVALID_ELEMENT                   = SFERR_GENERAL_CLASS_BEGIN + 0x3C,
    SFERR_XML_INVALID_NDATA                     = SFERR_GENERAL_CLASS_BEGIN + 0x3D,
    SFERR_XML_INVALID_TARGETNAMESPACE           = SFERR_GENERAL_CLASS_BEGIN + 0x3E,
    SFERR_XML_INVALID_XMLSPACE                  = SFERR_GENERAL_CLASS_BEGIN + 0x3F,
    SFERR_XML_INVALID_CHILDRENELEM              = SFERR_GENERAL_CLASS_BEGIN + 0x40,
    SFERR_XML_INVALID_INSTANDALONE              = SFERR_GENERAL_CLASS_BEGIN + 0x41,
    SFERR_XML_INVALID_IMPORTNAMESPACE           = SFERR_GENERAL_CLASS_BEGIN + 0x42,
    SFERR_XML_INVALID_SCHEMA_ELEMENT            = SFERR_GENERAL_CLASS_BEGIN + 0x43,
    SFERR_XML_INVALID_SCHEMA_ROOT               = SFERR_GENERAL_CLASS_BEGIN + 0x44,
    SFERR_XML_INVALID_ANNOTATION                = SFERR_GENERAL_CLASS_BEGIN + 0x45,
    SFERR_XML_INVALID_SIMPLECONTENT             = SFERR_GENERAL_CLASS_BEGIN + 0x46,
    SFERR_XML_INVALID_COMPLEXCONTENT            = SFERR_GENERAL_CLASS_BEGIN + 0x47,
    SFERR_XML_INVALID_ATTGROUPCONTENT           = SFERR_GENERAL_CLASS_BEGIN + 0x48,
    SFERR_XML_INVALID_ATTRIBUTECONTENT          = SFERR_GENERAL_CLASS_BEGIN + 0x49,
    SFERR_XML_INVALID_DEFAULT_FIXED_ATTI        = SFERR_GENERAL_CLASS_BEGIN + 0x4A,
    SFERR_XML_INVALID_ATTRIBUTE_NS              = SFERR_GENERAL_CLASS_BEGIN + 0x4B,
    SFERR_XML_INVALID_GROUPCONTENT              = SFERR_GENERAL_CLASS_BEGIN + 0x4C,
    SFERR_XML_INVALID_ANNOTATIONCONTENT         = SFERR_GENERAL_CLASS_BEGIN + 0x4D,
    SFERR_XML_INVALID_SIMPLETYPECONTENT         = SFERR_GENERAL_CLASS_BEGIN + 0x4E,
    SFERR_XML_INVALID_LISTCONTENT               = SFERR_GENERAL_CLASS_BEGIN + 0x4F,
    SFERR_XML_INVALID_RESTRICTIONCONTENT        = SFERR_GENERAL_CLASS_BEGIN + 0x50,
    SFERR_XML_INVALID_UNIONCONTENT              = SFERR_GENERAL_CLASS_BEGIN + 0x51,
    SFERR_XML_INVALID_REDEFINE                  = SFERR_GENERAL_CLASS_BEGIN + 0x52,
    SFERR_XML_INVALID_REDEFINE_SIMPLETYPE       = SFERR_GENERAL_CLASS_BEGIN + 0x53,
    SFERR_XML_INVALID_REDEFINE_SIMPLETYPEBASE   = SFERR_GENERAL_CLASS_BEGIN + 0x54,
    SFERR_XML_INVALID_REDEFINE_COMPLEXTYPE      = SFERR_GENERAL_CLASS_BEGIN + 0x55,
    SFERR_XML_INVALID_REDEFINE_COMPLEXTYPEBASE  = SFERR_GENERAL_CLASS_BEGIN + 0x56,
    SFERR_XML_INVALID_REDEFINE_GROUP_MINMAX     = SFERR_GENERAL_CLASS_BEGIN + 0x57,
    SFERR_XML_INVALID_REDEFINE_CHILD            = SFERR_GENERAL_CLASS_BEGIN + 0x58,
    SFERR_XML_INVALID_COMPLEXTYPEINFO           = SFERR_GENERAL_CLASS_BEGIN + 0x59,
    SFERR_XML_INVALID_SIMPLECONTENT_BASE        = SFERR_GENERAL_CLASS_BEGIN + 0x5A,
    SFERR_XML_INVALID_COMPLEXTYPE_BASE          = SFERR_GENERAL_CLASS_BEGIN + 0x5B,
    SFERR_XML_INVALID_CHILD_COMPLEXCONTENT      = SFERR_GENERAL_CLASS_BEGIN + 0x5C,
    SFERR_XML_INVALID_DEFAULT_FIXED_ELEMENT     = SFERR_GENERAL_CLASS_BEGIN + 0x5D,
    SFERR_XML_INVALID_SUBSGROUP                 = SFERR_GENERAL_CLASS_BEGIN + 0x5E,
    SFERR_XML_INVALID_NSREFERENCE               = SFERR_GENERAL_CLASS_BEGIN + 0x5F,
    SFERR_XML_INVALID_ALLCONTENT                = SFERR_GENERAL_CLASS_BEGIN + 0x60,
    SFERR_XML_INVALID_MIN_MAX_OCCURS            = SFERR_GENERAL_CLASS_BEGIN + 0x61,
    SFERR_XML_INVALID_CHILD_COMPLEXTYPE         = SFERR_GENERAL_CLASS_BEGIN + 0x62,
    SFERR_XML_INVALID_ANYATTRIBUTECONTENT       = SFERR_GENERAL_CLASS_BEGIN + 0x63,
    SFERR_XML_INVALID_CHILD_SIMPLECONTENT       = SFERR_GENERAL_CLASS_BEGIN + 0x64,
    SFERR_XML_INVALID_SIMPLETYPE_HAS_CHILD      = SFERR_GENERAL_CLASS_BEGIN + 0x65,
    SFERR_XML_INVALID_FIXED_VALUE               = SFERR_GENERAL_CLASS_BEGIN + 0x66,
    SFERR_XML_INVALID_BLOCK_VALUE               = SFERR_GENERAL_CLASS_BEGIN + 0x67,
    SFERR_XML_INVALID_FINAL_VALUE               = SFERR_GENERAL_CLASS_BEGIN + 0x68,
    SFERR_XML_UNKNOWN_ENTITY                    = SFERR_GENERAL_CLASS_BEGIN + 0x69,
    SFERR_XML_UNKNOWN_MODELTYPE                 = SFERR_GENERAL_CLASS_BEGIN + 0x6A,
    SFERR_XML_UNKNOWN_PREFIX                    = SFERR_GENERAL_CLASS_BEGIN + 0x6B,
    SFERR_XML_UNKNOWN_COMPLEXTYPE               = SFERR_GENERAL_CLASS_BEGIN + 0x6C,
    SFERR_XML_UNKNOWN_SIMPLETYPE                = SFERR_GENERAL_CLASS_BEGIN + 0x6D,
    SFERR_XML_DIFFERENCE_INCLUDE_NS             = SFERR_GENERAL_CLASS_BEGIN + 0x6E,
    SFERR_XML_DIFFERENCE_IMPORT_NS              = SFERR_GENERAL_CLASS_BEGIN + 0x6F,
    SFERR_XML_DIFFERENCE_REDEFINE_NS            = SFERR_GENERAL_CLASS_BEGIN + 0x70,
    SFERR_XML_MORE_ENDTAG                       = SFERR_GENERAL_CLASS_BEGIN + 0x71,
    SFERR_XML_MORE_ELEMENT                      = SFERR_GENERAL_CLASS_BEGIN + 0x72,
    SFERR_XML_MORE_COMPLEXTYPE_NAME             = SFERR_GENERAL_CLASS_BEGIN + 0x73,
    SFERR_XML_MORE_SIMPLEYPE_NAME               = SFERR_GENERAL_CLASS_BEGIN + 0x74,
    SFERR_XML_MORE_ATTRIBUTEREF_CONTENT         = SFERR_GENERAL_CLASS_BEGIN + 0x75,
    SFERR_XML_NOT_OPTIONAL_DEFAULT_ATTI         = SFERR_GENERAL_CLASS_BEGIN + 0x76,
    SFERR_XML_NOT_FIND_SIMPLETYPE               = SFERR_GENERAL_CLASS_BEGIN + 0x77,
    SFERR_XML_NOT_FIND_REDEFINE_DECLARATION     = SFERR_GENERAL_CLASS_BEGIN + 0x78,
    SFERR_XML_NOT_FIND_TYPE                     = SFERR_GENERAL_CLASS_BEGIN + 0x79,
    SFERR_XML_NOT_FIND_REF_ELEMENT              = SFERR_GENERAL_CLASS_BEGIN + 0x7A,
    SFERR_XML_NOT_FIND_DECLARATION              = SFERR_GENERAL_CLASS_BEGIN + 0x7B,
    SFERR_XML_NOT_FIND_ATTRIBUTE                = SFERR_GENERAL_CLASS_BEGIN + 0x7C,
    SFERR_XML_NOT_FIND_BASETYPE                 = SFERR_GENERAL_CLASS_BEGIN + 0x7D,
    SFERR_XML_DUPLICATE_TYPE                    = SFERR_GENERAL_CLASS_BEGIN + 0x7E,
    SFERR_XML_DUPLICATE_ELEMENT_DECLARATION     = SFERR_GENERAL_CLASS_BEGIN + 0x7F,
    SFERR_XML_DUPLICATE_REFATTRIBUTE            = SFERR_GENERAL_CLASS_BEGIN + 0x80,
    SFERR_XML_DUPLICATE_FACET                   = SFERR_GENERAL_CLASS_BEGIN + 0x81,
    SFERR_XML_REPEATED_ATTRIBUTE                = SFERR_GENERAL_CLASS_BEGIN + 0x82,
    SFERR_XML_REPEATED_SUBSTITUTION             = SFERR_GENERAL_CLASS_BEGIN + 0x83,
    SFERR_XML_REPEATED_EXTENSION                = SFERR_GENERAL_CLASS_BEGIN + 0x84,
    SFERR_XML_REPEATED_RESTRICTION              = SFERR_GENERAL_CLASS_BEGIN + 0x85,
    SFERR_XML_REPEATED_UNION                    = SFERR_GENERAL_CLASS_BEGIN + 0x86,
    SFERR_XML_REPEATED_LIST                     = SFERR_GENERAL_CLASS_BEGIN + 0x87,
    SFERR_XML_NILL_NOT_ALLOWED                  = SFERR_GENERAL_CLASS_BEGIN + 0x88,
    SFERR_XML_NO_CONTENT_FOR_REF                = SFERR_GENERAL_CLASS_BEGIN + 0x89,
    SFERR_XML_NOT_ENOUGH_ELEMENT                = SFERR_GENERAL_CLASS_BEGIN + 0x8A,
    SFERR_XML_NOREPINMIXED                      = SFERR_GENERAL_CLASS_BEGIN + 0x8B,
    SFERR_XML_TAGSTACK_NOTEMPTY                 = SFERR_GENERAL_CLASS_BEGIN + 0x8C,
    SFERR_XML_PI_START_NO_WITHXML               = SFERR_GENERAL_CLASS_BEGIN + 0x8D,
    SFERR_XML_ROOTELEM_NOTLIKE_DOCTYPE          = SFERR_GENERAL_CLASS_BEGIN + 0x8E,
    SFERR_XML_ATTR_NOTPROVIDED                  = SFERR_GENERAL_CLASS_BEGIN + 0x8F,
    SFERR_XML_NODEFAULT_ATTR_FORSTANDALONE      = SFERR_GENERAL_CLASS_BEGIN + 0x90,
    SFERR_XML_MULTIPLEID_ATTRS                  = SFERR_GENERAL_CLASS_BEGIN + 0x91,
    SFERR_XML_NO_MULTIPLEID_ATTRS               = SFERR_GENERAL_CLASS_BEGIN + 0x92,
    SFERR_XML_REUSEDID                          = SFERR_GENERAL_CLASS_BEGIN + 0x93,
    SFERR_XML_EMPTYELEM_HAS_CONTENT             = SFERR_GENERAL_CLASS_BEGIN + 0x94,
    SFERR_XML_UNEXPECTED_EOF                    = SFERR_GENERAL_CLASS_BEGIN + 0x95,
    SFERR_XML_FAILED_ENUMLIST                   = SFERR_GENERAL_CLASS_BEGIN + 0x96,
    SFERR_XML_REDUNDANT_XMLNS_PREFIX            = SFERR_GENERAL_CLASS_BEGIN + 0x97,
    SFERR_XML_REDEFINEREF_COUNT                 = SFERR_GENERAL_CLASS_BEGIN + 0x98,
    SFERR_XML_ATTFROUPREF_COUNT                 = SFERR_GENERAL_CLASS_BEGIN + 0x99,
    SFERR_XML_ELEMENT_WITH_ANONYMOUSTYPE        = SFERR_GENERAL_CLASS_BEGIN + 0x9A,
    SFERR_XML_CIRCULAR_DEFINITION               = SFERR_GENERAL_CLASS_BEGIN + 0x9B,
    SFERR_XML_ALLCONTENT_LIMITED                = SFERR_GENERAL_CLASS_BEGIN + 0x9C,
    SFERR_XML_ABSTRACT_TYPE                     = SFERR_GENERAL_CLASS_BEGIN + 0x9D,
    SFERR_XML_TOPELEMENT_INCLUDE_REF            = SFERR_GENERAL_CLASS_BEGIN + 0x9E,
    SFERR_SOAP_EXPECT_ENVELOPE                  = SFERR_GENERAL_CLASS_BEGIN + 0x9F,
    SFERR_SOAP_EXPECT_BODY                      = SFERR_GENERAL_CLASS_BEGIN + 0xA0,
    SFERR_SOAP_EXPECT_FAULT                     = SFERR_GENERAL_CLASS_BEGIN + 0xA1,
    SFERR_SOAP_REPEATED_ENVELOPE                = SFERR_GENERAL_CLASS_BEGIN + 0xA2,
    SFERR_SOAP_REDUNDANT_ELEMENT                = SFERR_GENERAL_CLASS_BEGIN + 0xA3,
    SFERR_SOAP_UNSUPPORT_VERSION                = SFERR_GENERAL_CLASS_BEGIN + 0xA4,
    SFERR_SOAP_FAULT_MESSAGE                    = SFERR_GENERAL_CLASS_BEGIN + 0xA5,
    SFERR_WSDL_EXPECT_SERVICE                   = SFERR_GENERAL_CLASS_BEGIN + 0xA6,
    SFERR_WSDL_EXPECT_PORT                      = SFERR_GENERAL_CLASS_BEGIN + 0xA7,
    SFERR_WSDL_EXPECT_BINDING                   = SFERR_GENERAL_CLASS_BEGIN + 0xA8,
    SFERR_WSDL_EXPECT_OPERATION                 = SFERR_GENERAL_CLASS_BEGIN + 0xA9,
    SFERR_WSDL_EXPECT_PORTTYPE                  = SFERR_GENERAL_CLASS_BEGIN + 0xAA,
    SFERR_WSDL_EXPECT_MESSAGE                   = SFERR_GENERAL_CLASS_BEGIN + 0xAB,
    SFERR_XML_CLASS_END                         = 0x56FF,
    
    // SophiaFramework User Class Errors[0x8000 - 0xFFFF]
    SFERR_USER_CLASS_BEGIN                      = 0x8000,
    SFERR_USER,
    SFERR_USER_CLASS_END                        = 0xFFFF,
};

Description

SFCErrorEnum is an enumerative type to show error codes of SFCError type. The error codes are as follows:

[Note] Note

Errors in the range [0x0000 - 0x3FFF] are of the BREW platform. Refer to the AEEError.h file contained in the BREW SDK, as for their detailed information.

SophiaFramework error aliases for BREW errors.

SophiaFramework Error Code BREW Error Code (value) Description
SFERR_NO_ERROR SUCCESS (0x0000) Success
SFERR_FAILED EFAILED (0x0001) Failure
SFERR_NO_MEMORY ENOMEMORY (0x0002) Out of memory
SFERR_INVALID_STATE EBADSTATE (0x000D) Invalid state
SFERR_INVALID_PARAM EBADPARM (0x000E) Invalid parameter
SFERR_INVALID_FORMAT EINVALIDFORMAT (0x0011) Invalid format
SFERR_INVALID_MEMORY EMEMPTR (0x001D) Invalid memory pointer
SFERR_UNSUPPORTED EUNSUPPORTED (0x0014) API is not supported
SFERR_CLASS_UNSUPPORTED ECLASSNOTSUPPORT (0x0003) Specified class unsupported

Error codes originally defined by SophiaFramework.

Error Code Value Description
SFERR_MAIL_INVALID_PASSWORD 0x6801 The password is not correct
SFERR_MAIL_NOT_SUPPORT_UIDL 0x6802 The UIDL command is not supported by the server
SFERR_XML_BAD_VERSION 0x6901 Bad version attribute found in the XML document
SFERR_XML_BAD_ENCODING 0x6902 Bad encoding attribute found in the XML document
SFERR_XML_BAD_STANDALONE 0x6903 Bad standalone attribute found in the XML document
SFERR_XML_BAD_SEQUENCE 0x6904 Bad strings such as "<!--", "-->", "<[[", "]]>" found in the XML document
SFERR_XML_BAD_ATTRDEFTYPE 0x6905 Bad attribute default type found
SFERR_XML_BAD_XSITYPE 0x6906 Bad xsi:type attribute found in the XML Schema Document (XSD)
SFERR_XML_BAD_ATTRTYPE 0x6907 Bad attribute type found
SFERR_XML_EXPECT_EQUALSIGN 0x6908 No "=" mark found
SFERR_XML_EXPECT_NOTATIONNAME 0x6909 No Notation name found in the XML document with DTD
SFERR_XML_EXPECT_ATTRNAME 0x690A No attribute name found
SFERR_XML_EXPECT_DEFAULTATTR 0x690B No default attribute found in the XML document with DTD
SFERR_XML_EXPECT_DECLSTRING 0x690C The XML declaration is not completed
SFERR_XML_EXPECT_ELEMENTNAME 0x690D No element name found
SFERR_XML_EXPECT_PINAME 0x690E No name found in processing instruction (PI)
SFERR_XML_EXPECT_WHITESPACE 0x690F No space character found
SFERR_XML_EXPECT_ATTRTYPE 0x6910 No attribute type found when declaring the attribute (ATTLIST) in the XML document with DTD
SFERR_XML_EXPECT_ATTRVALUE 0x6911 No attribute value found when declaring the attribute (ATTLIST) in the XML document with DTD
SFERR_XML_EXPECT_ENDTAG 0x6912 No ending tag found
SFERR_XML_EXPECT_PENAME 0x6913 No entity name found in the XML document with DTD
SFERR_XML_EXPECT_ENTITYNAME 0x6914 No entity reference name found in the XML document with DTD
SFERR_XML_EXPECT_ENUMPIPE 0x6915 No delimition mark ("|") found when declaring attributes or elements
SFERR_XML_EXPECT_ENUMVALUE 0x6916 No attribute enumeration value found in the XML document with DTD
SFERR_XML_EXPECT_SEQCHOICE 0x6917 No delimition mark ("," and "|") for child elements found in the XML document with DTD
SFERR_XML_EXPECT_ASTERISK 0x6918 No ("*") mark to show multiple element appearances found in the XML document with DTD
SFERR_XML_EXPECT_OPENSIGN 0x6919 Beginning mark ("(", "<", "[") is not found in the XML document with DTD
SFERR_XML_EXPECT_ENDSIGN 0x691A Ending mark (")", ">", "]") is not found in the XML document with DTD
SFERR_XML_EXPECT_NDATA 0x691A No NDATA keyword found when declaring unparsed entity in the XML document with DTD
SFERR_XML_EXPECT_ENTITYVALUE 0x691C No entity value found in the XML document with DTD
SFERR_XML_EXPECT_QUOTEDSTRING 0x691D No quoted string found in the XML declaration
SFERR_XML_EXPECT_XMLVERSION 0x691E Version attribute is not specified in the XML declaration
SFERR_XML_EXPECT_ENCODING 0x691F Encoding attribute is not specified in the XML declaration
SFERR_XML_EXPECT_COLON 0x6920 No ":" mark in the Notation name of the Entity with namespace found in the XML document with DTD
SFERR_XML_EXPECT_SCHEMALOCATION 0x6921 No schemaLocation attribute when refering to the namespace that varies according to "include" or "redefine" found in the XML document with schema XSD file
SFERR_XML_EXPECT_NAMEREF 0x6922 No name or name reference found in the XML document with schema XSD file
SFERR_XML_EXPECT_SIMPLETYPE_CONTENT 0x6923 No simpleContent found in the XML document with schema XSD file
SFERR_XML_EXPECT_SIMPLETYPE_INLIST 0x6924 No simpleType list found in the XML document with schema XSD file
SFERR_XML_EXPECT_SIMPLETYPE_INRESTRICTION 0x6925 No simpleType restriction found in the XML document with schema XSD file
SFERR_XML_EXPECT_SIMPLETYPE_INUNION 0x6926 No simpleType union found in the XML document with schema XSD file
SFERR_XML_EXPECT_ATOMIC_ITEMTYPE 0x6927 No Atomic simpleType list found in the XML document with schema XSD file
SFERR_XML_EXPECT_BASETYPE 0x6928 This type is not base type in the XML document with schema XSD file
SFERR_XML_EXPECT_DERIVED_TYPE 0x6929 This type is not derived type in the XML document with schema XSD file
SFERR_XML_EXPECT_DATATYPEVALIDATOR 0x692A This datatype is not verified in the XML document with schema XSD file
SFERR_XML_EXPECT_SEQUENCECOMMA 0x692B Insufficient "," mark for declaring the attribute or element in the XML document with DTD
SFERR_XML_EXPECT_WS_COLLAPSE 0x692C The whiteSpace attribute value is limited to "collapse" in the XML document with schema XSD file
SFERR_XML_UNTERMINATED_STARTTAG 0x692D Starting tag is not terminated
SFERR_XML_UNTERMINATED_PI 0x692E Processing instruction (PI) is not terminated
SFERR_XML_UNTERMINATED_COMMENT 0x692F Comment is not terminated
SFERR_XML_UNTERMINATED_ELEMENTDECL 0x6930 The element definition is not terminated in the XML document with DTD
SFERR_XML_UNTERMINATED_ENTITYDECL 0x6931 The entity definition is not terminated in the XML document with DTD
SFERR_XML_UNTERMINATED_NOTATIONDECL 0x6932 The notation definition is not terminated in the XML document with DTD
SFERR_XML_UNTERMINATED_XMLDECL 0x6933 The XML declaration is not terminated
SFERR_XML_UNTERMINATED_ENTITYREF 0x6934 The entity reference is not terminated
SFERR_XML_UNTERMINATED_CDATA 0x6935 The CDATA document section is not terminated
SFERR_XML_UNSUPPORT_XMLVERSION 0x6936 Version other than XML 1.0/1.1
SFERR_XML_UNSUPPORT_FEATURE 0x6937 This Datatype is not supported in the XML document with schema XSD file
SFERR_XML_INVALID_CHARREF 0x6938 Invalid character range
SFERR_XML_INVALID_ATTRVALUE 0x6939 Invalid attribute value found
SFERR_XML_INVALID_ELEMENTNAME 0x693A Invalid element name found
SFERR_XML_INVALID_ENTITYREFNAME 0x693B Invalid entity reference name found
SFERR_XML_INVALID_ELEMENT 0x693C Invalide element found
SFERR_XML_INVALID_NDATA 0x693D Invalid NDATA found in the entity definition of the XML document with DTD
SFERR_XML_INVALID_TARGETNAMESPACE 0x693E Invalid targetNamespace attribute found in the XML document with schema XSD file
SFERR_XML_INVALID_XMLSPACE 0x693F Invalid xml:space attribute found
SFERR_XML_INVALID_CHILDRENELEM 0x6940 Invalid child element found in the XML document with DTD
SFERR_XML_INVALID_INSTANDALONE 0x6941 Invalid standalone attribute found
SFERR_XML_INVALID_IMPORTNAMESPACE 0x6942 Invalid import namespace found in the XML document with schema XSD file
SFERR_XML_INVALID_SCHEMA_ELEMENT 0x6943 Invalid schema element found in the XML document with schema XSD file
SFERR_XML_INVALID_SCHEMA_ROOT 0x6944 Invalid root element found in the XML document with schema XSD file
SFERR_XML_INVALID_ANNOTATION 0x6945 Invalid annotation found in the XML document with schema XSD file
SFERR_XML_INVALID_SIMPLECONTENT 0x6946 Invalid simpleContent found in the XML document with schema XSD file
SFERR_XML_INVALID_COMPLEXCONTENT 0x6947 Invalid complexContent found in the XML document with schema XSD file
SFERR_XML_INVALID_ATTGROUPCONTENT 0x6948 Invalid attributeGroup content found in the XML document with schema XSD file
SFERR_XML_INVALID_ATTRIBUTECONTENT 0x6949 Invalid attribute content found in the XML document with schema XSD file
SFERR_XML_INVALID_DEFAULT_FIXED_ATTI 0x694A The fixed attribute and the default attribute cannot be set at the same time in the XML document with schema XSD file
SFERR_XML_INVALID_ATTRIBUTE_NS 0x694B Invalid attribute namespace found in the XML document with schema XSD file
SFERR_XML_INVALID_GROUPCONTENT 0x694C Invalid group content found in the XML document with schema XSD file
SFERR_XML_INVALID_ANNOTATIONCONTENT 0x694D Invalid annotation content found in the XML document with schema XSD file
SFERR_XML_INVALID_SIMPLETYPECONTENT 0x694E Invalid simpleType content found in the XML document with schema XSD file
SFERR_XML_INVALID_LISTCONTENT 0x694F Invalid list content found in the XML document with schema XSD file
SFERR_XML_INVALID_RESTRICTIONCONTENT 0x6950 Invalid restriction content found in the XML document with schema XSD file
SFERR_XML_INVALID_UNIONCONTENT 0x6951 Invalid union content found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE 0x6952 Duplicate redefine found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_SIMPLETYPE 0x6953 Invalid redefine simpleType found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_SIMPLETYPEBASE 0x6954 Invalid redefine simpleType's base type found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_COMPLEXTYPE 0x6955 Invalid redefine complexType found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_COMPLEXTYPEBASE 0x6956 Invalid redefine complexType's base type found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_GROUP_MINMAX 0x6957 Invalid redefine group range found in the XML document with schema XSD file
SFERR_XML_INVALID_REDEFINE_CHILD 0x6958 redefine cannot be done in the XML document with schema XSD file
SFERR_XML_INVALID_COMPLEXTYPEINFO 0x6959 Invalid complexType found in the XML document with schema XSD file
SFERR_XML_INVALID_SIMPLECONTENT_BASE 0x695A Invalid simpleContent base type found in the XML document with schema XSD file
SFERR_XML_INVALID_COMPLEXTYPE_BASE 0x695B Invalid complexType's base type found in the XML document with schema XSD file
SFERR_XML_INVALID_CHILD_COMPLEXCONTENT 0x695C Invalid complexContent's child element found in the XML document with schema XSD file
SFERR_XML_INVALID_DEFAULT_FIXED_ELEMENT 0x695D The fixed attribute and the default attribute cannot be set to the element at the same time in the XML document with schema XSD file
SFERR_XML_INVALID_SUBSGROUP 0x695E Invalid substitutionGroup found in the XML document with schema XSD file
SFERR_XML_INVALID_NSREFERENCE 0x695F Invalid namespace reference found in the XML document with schema XSD file
SFERR_XML_INVALID_ALLCONTENT 0x6960 Invalid all content found in the XML document with schema XSD file
SFERR_XML_INVALID_MIN_MAX_OCCURS 0x6961 Invalid data range found in the XML document with schema XSD file
SFERR_XML_INVALID_CHILD_COMPLEXTYPE 0x6962 Invalid complexType's child element type found in the XML document with schema XSD file
SFERR_XML_INVALID_ANYATTRIBUTECONTENT 0x6963 Invalid anyAttribute content found in the XML document with schema XSD file
SFERR_XML_INVALID_CHILD_SIMPLECONTENT 0x6964 simpleContent's child element found in the XML document with schema XSD file
SFERR_XML_INVALID_SIMPLETYPE_HAS_CHILD 0x6965 simpleType's child element found in the XML document with schema XSD file
SFERR_XML_INVALID_FIXED_VALUE 0x6966 Invalid fixed attribute found in the XML document with schema XSD file
SFERR_XML_INVALID_BLOCK_VALUE 0x6967 Invalid block attribute found in the XML document with schema XSD file
SFERR_XML_INVALID_FINAL_VALUE 0x6968 Invalid final attribute found in the XML document with schema XSD file
SFERR_XML_UNKNOWN_ENTITY 0x6969 Entity is not defined in the XML document with DTD
SFERR_XML_UNKNOWN_MODELTYPE 0x696A Content model of the entity is not defined in the XML document with DTD
SFERR_XML_UNKNOWN_PREFIX 0x696B The prefix definition is not found in the XML document
SFERR_XML_UNKNOWN_COMPLEXTYPE 0x696C ComplexType is not defined in the XML document with schema XSD file
SFERR_XML_UNKNOWN_SIMPLETYPE 0x696D simpleType is not defined in the XML document with schema XSD file
SFERR_XML_DIFFERENCE_INCLUDE_NS 0x696E Invalid include namespace and included namespace found in the XML document with schema XSD file
SFERR_XML_DIFFERENCE_IMPORT_NS 0x696F Invalid import namespace and imported namespace found in the XML document with schema XSD file
SFERR_XML_DIFFERENCE_REDEFINE_NS 0x6970 Invalid redefine namespace and redefined namespace found in the XML document with schema XSD file
SFERR_XML_MORE_ENDTAG 0x6971 Extra ">" tag found in the XML
SFERR_XML_MORE_ELEMENT 0x6972 Elements exceeded the defined number in the XML document with DTD or XML document with schema XSD file
SFERR_XML_MORE_COMPLEXTYPE_NAME 0x6973 Multiple complexType names are defined in the XML document with schema XSD file
SFERR_XML_MORE_SIMPLEYPE_NAME 0x6974 Multiple simpleType names are defined in the XML document with schema XSD file
SFERR_XML_MORE_ATTRIBUTEREF_CONTENT 0x6975 Multiple attribute's reference contents are defined in the XML document with schema XSD file
SFERR_XML_NOT_OPTIONAL_DEFAULT_ATTI 0x6976 The default attribute is set when the use attribute is optional in the XML document with schema XSD file
SFERR_XML_NOT_FIND_SIMPLETYPE 0x6977 SimpleType is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_REDEFINE_DECLARATION 0x6978 The redefine declaration is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_TYPE 0x6979 The type attribute is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_REF_ELEMENT 0x697A The element reference is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_DECLARATION 0x697B The schema declaration is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_ATTRIBUTE 0x697C The attribute definition is not found in the XML document with schema XSD file
SFERR_XML_NOT_FIND_BASETYPE 0x697D Base type definition is not found in the XML document with schema XSD file
SFERR_XML_DUPLICATE_TYPE 0x697E Duplicate type attribute definition in the XML document with schema XSD file
SFERR_XML_DUPLICATE_ELEMENT_DECLARATION 0x697F Duplicate element declaration in the XML document with schema XSD file
SFERR_XML_DUPLICATE_REFATTRIBUTE 0x6980 Duplicate attribute reference in the XML document with schema XSD file
SFERR_XML_DUPLICATE_FACET 0x6981 Duplicate facet definition in the XML document with schema XSD file
SFERR_XML_REPEATED_ATTRIBUTE 0x6982 Repeated attribute definition in the XML document with schema XSD file
SFERR_XML_REPEATED_SUBSTITUTION 0x6983 Repeated substitution definition in the XML document with schema XSD file
SFERR_XML_REPEATED_EXTENSION 0x6984 Repeated extension definition in the XML document with schema XSD file
SFERR_XML_REPEATED_RESTRICTION 0x6985 Repeated restriction definition in the XML document with schema XSD file
SFERR_XML_REPEATED_UNION 0x6986 Repeated union definition in the XML document with schema XSD file
SFERR_XML_REPEATED_LIST 0x6987 Repeated list definition in the XML document with schema XSD file
SFERR_XML_NILL_NOT_ALLOWED 0x6988 Null element is not allowed in the XML document with schema XSD file
SFERR_XML_NO_CONTENT_FOR_REF 0x6989 The referred content does not exist in the XML document with schema XSD file
SFERR_XML_NOT_ENOUGH_ELEMENT 0x698A Insufficient elements in the XML document with DTD
SFERR_XML_NOREPINMIXED 0x698B #PCDATA and "*" are included in the element definition in the XML document with DTD
SFERR_XML_TAGSTACK_NOTEMPTY 0x698C The tag is not symmetry in the XML document
SFERR_XML_PI_START_NO_WITHXML 0x698D The target of Processing instruction (PI) is not "xml" in the XML document
SFERR_XML_ROOTELEM_NOTLIKE_DOCTYPE 0x698E Invalid root element defined by DOCTYPE found in the XML document with DTD
SFERR_XML_ATTR_NOTPROVIDED 0x698F The required attribute is not set in the XML document with DTD
SFERR_XML_NODEFAULT_ATTR_FORSTANDALONE 0x6990 The standalone attribute is not the default setting in the XML document
SFERR_XML_MULTIPLEID_ATTRS 0x6991 Multiple ID attributes are defined in the XML document with DTD
SFERR_XML_NO_MULTIPLEID_ATTRS 0x6992 Atribute type (such as ID, IDREF, IDREFS, ENTITY, ENTITIES, NMTOKEN, NMTOKENS) is not defined in the XML document with DTD
SFERR_XML_REUSEDID 0x6993 The ID attribute cannot be reused in the XML document with DTD
SFERR_XML_EMPTYELEM_HAS_CONTENT 0x6994 The EMPTY element in the XML document with DTD has the content
SFERR_XML_UNEXPECTED_EOF 0x6995 Unexpected EOF in the XML document
SFERR_XML_FAILED_ENUMLIST 0x6996 Failed in parsing the Enumeration attribute value in the XML document with DTD
SFERR_XML_REDUNDANT_XMLNS_PREFIX 0x6997 Extra xmlns in the element prefix in the XML document with namespace
SFERR_XML_REDEFINEREF_COUNT 0x6998 Duplicate group redefine in the XML document with schema XSD file
SFERR_XML_ATTFROUPREF_COUNT 0x6999 Duplicate attributeGroup redefine in the XML document with schema XSD file
SFERR_XML_ELEMENT_WITH_ANONYMOUSTYPE 0x699A The AnonymousType element is not defined in the XML document with schema XSD file
SFERR_XML_CIRCULAR_DEFINITION 0x699B Data type is circularly defined in the XML document with schema XSD file
SFERR_XML_ALLCONTENT_LIMITED 0x699C Elements other than all element's child elements of the XML document with schema XSD file are included
SFERR_XML_ABSTRACT_TYPE 0x699D The abstractType is not defined in the XML document with schema XSD file
SFERR_XML_TOPELEMENT_INCLUDE_REF 0x699E Other elements cannot be referred to by the top element in the XML document with schema XSD file
SFERR_SOAP_EXPECT_ENVELOPE 0x699F There is no Envelope element in the SOAP message
SFERR_SOAP_EXPECT_BODY 0x69A0 There is no Body element in the SOAP message
SFERR_SOAP_EXPECT_FAULT 0x69A1 There is no Fault element in the SOAP message
SFERR_SOAP_REPEATED_ENVELOPE 0x69A2 Duplicate Envelope element in the SOAP message
SFERR_SOAP_REDUNDANT_ELEMENT 0x69A3 Invalid element found in the SOAP message
SFERR_SOAP_UNSUPPORT_VERSION 0x69A4 The version of specified SOAP is not supported
SFERR_SOAP_FAULT_MESSAGE 0x69A5 The message is Fault in the SOAP message
SFERR_WSDL_EXPECT_SERVICE 0x69A6 There is no specified web service in the WSDL document
SFERR_WSDL_EXPECT_PORT 0x69A7 There is no specified web service port in the WSDL document
SFERR_WSDL_EXPECT_BINDING 0x69A8 Cannot bind the specified web service port in the WSDL document
SFERR_WSDL_EXPECT_OPERATION 0x69A9 There is no specified web service method in the WSDL document
SFERR_WSDL_EXPECT_PORTTYPE 0x69AA There is no corresponding port type in the WSDL document
SFERR_WSDL_EXPECT_MESSAGE 0x69AB There is no corresponding message in the WSDL document

The your own error codes can be defined from 0x8001 to 0xFFFE.

Reference

Error Type