Package com.nfbsoftware.xml.exception
Interface XmlDocumentCheckedException.Codes
- Enclosing class:
XmlDocumentCheckedException
public static interface XmlDocumentCheckedException.Codes
Contains all of the message codes defined for this exception type as
well as any subclasses.
- Author:
- Brendan Clemenzi
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final XmlDocumentCheckedException.CodeINFORMATION message with a code of XmlDocument:ChildNotFound: Child not found, path: {0}static final XmlDocumentCheckedException.CodeINFORMATION message with a code of XmlDocument:CloneFailed: Could not clone the child node: {0}static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:DocumentLoadFailed: Failed to load the document: {0}static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:ErrorOnChildRemove: Error occured when trying to remove child: {0}static final XmlDocumentCheckedException.CodeERROR message with a code of XmlDocument:GeneralError: A general error has occurred: {0}static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:IncompatibleDocumentType: The XmlDocument implementation, {0} is incompatible with {1}static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:InvalidIndex: Invalid index.static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:InvalidNodeName: An invalid node name was found: {0}static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:InvalidRootElement: The root element of the document is not appropriate for this adapter type.static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:NullRootElement: The root element of the document is null.static final XmlDocumentCheckedException.CodeWARNING message with a code of XmlDocument:ParentNotFound: Parent node not found: {0}
-
Field Details
-
GENERAL_ERROR
ERROR message with a code of XmlDocument:GeneralError: A general error has occurred: {0} -
INCOMPATIBLE_DOCUMENT_TYPE
WARNING message with a code of XmlDocument:IncompatibleDocumentType: The XmlDocument implementation, {0} is incompatible with {1} -
DOCUMENT_LOAD_FAILED
WARNING message with a code of XmlDocument:DocumentLoadFailed: Failed to load the document: {0} -
INVALID_ROOT_ELEMENT
WARNING message with a code of XmlDocument:InvalidRootElement: The root element of the document is not appropriate for this adapter type. -
NULL_ROOT_ELEMENT
WARNING message with a code of XmlDocument:NullRootElement: The root element of the document is null. -
CHILD_NOT_FOUND
INFORMATION message with a code of XmlDocument:ChildNotFound: Child not found, path: {0} -
CLONE_FAILED
INFORMATION message with a code of XmlDocument:CloneFailed: Could not clone the child node: {0} -
INVALID_NODE_NAME
WARNING message with a code of XmlDocument:InvalidNodeName: An invalid node name was found: {0} -
ERROR_ON_CHILD_REMOVE
WARNING message with a code of XmlDocument:ErrorOnChildRemove: Error occured when trying to remove child: {0} -
PARENT_NOT_FOUND
WARNING message with a code of XmlDocument:ParentNotFound: Parent node not found: {0} -
INVALID_INDEX
WARNING message with a code of XmlDocument:InvalidIndex: Invalid index.
-