#[repr(u16)]pub enum Error {
Show 15 variants
IndexSize = 1,
StringSize = 2,
HierarchyRequest = 3,
WrongDocument = 4,
InvalidCharacter = 5,
NoDataAllowed = 6,
NoModificationAllowed = 7,
NotFound = 8,
NotSupported = 9,
InUseAttribute = 10,
InvalidState = 11,
Syntax = 12,
InvalidModification = 13,
Namespace = 14,
InvalidAccess = 15,
}
Expand description
Corresponds to the DOM DomException
type.
§Specification
DOM operations only raise exceptions in “exceptional” circumstances, i.e., when an operation is
impossible to perform (either for logical reasons, because data is lost, or because the
implementation has become unstable). In general, DOM methods return specific error values in
ordinary processing situation, such as out-of-bound errors when using NodeList
.
Variants§
IndexSize = 1
If index or size is negative, or greater than the allowed value
StringSize = 2
If the specified range of text does not fit into a DOMString
HierarchyRequest = 3
If any node is inserted somewhere it doesn’t belong
WrongDocument = 4
If a node is used in a different document than the one that created it (that doesn’t support it)
InvalidCharacter = 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.
NoDataAllowed = 6
If data is specified for a node which does not support data
NoModificationAllowed = 7
If an attempt is made to modify an object where modifications are not allowed
NotFound = 8
If an attempt is made to reference a node in a context where it does not exist
NotSupported = 9
If the implementation does not support the requested type of object or operation
InUseAttribute = 10
If an attempt is made to add an attribute that is already in use elsewhere
InvalidState = 11
If an attempt is made to use an object that is not, or is no longer, usable (introduced in DOM Level 2)
Syntax = 12
If an invalid or illegal string is specified (introduced in DOM Level 2)
InvalidModification = 13
If an attempt is made to modify the type of the underlying object (introduced in DOM Level 2)
Namespace = 14
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces (introduced in DOM Level 2)
InvalidAccess = 15
If a parameter or an operation is not supported by the underlying object (introduced in DOM Level 2)