Table of Contents

Enum DomExceptionType

Namespace
SharpVectors.Dom
Assembly
SharpVectors.Core.dll

DOM exception code types.

public enum DomExceptionType

Fields

UnknowError = 0

If there is no defined error code for this exception or the exception is unknown.

IndexSizeErr = 1

If index or size is negative, or greater than the allowed value.

DomstringSizeErr = 2

If the specified range of text does not fit into a string.

HierarchyRequestErr = 3

If any node is inserted somewhere it doesn't belong.

WrongDocumentErr = 4

If a node is used in a different document than the one that created it (that doesn't support it).

InvalidCharacterErr = 5

If an invalid or illegal character is specified, such as in a name. See production 2 in the XML specification for the definition of a legal character, and production 5 for the definition of a legal name character.

NoDataAllowedErr = 6

If data is specified for a node which does not support data.

NoModificationAllowedErr = 7

If an attempt is made to modify an object where modifications are not allowed.

NotFoundErr = 8

If an attempt is made to reference a node in a context where it does not exist.

NotSupportedErr = 9

If the implementation does not support the requested type of object or operation.

InuseAttributeErr = 10

If an attempt is made to add an attribute that is already in use elsewhere.

InvalidStateErr = 11

If an attempt is made to use an object that is not, or is no longer, usable.

SyntaxErr = 12

If an invalid or illegal string is specified.

InvalidModificationErr = 13

If an attempt is made to modify the type of the underlying object.

NamespaceErr = 14

If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.

InvalidAccessErr = 15

If a parameter or an operation is not supported by the underlying object.