OracleJavaScript API Reference for Oracle ADF Faces

 

SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

org.w3c.dom.core
Class DOMException

org.ecmascript.object.Object
   |
   +--org.w3c.dom.core.DOMException

public abstract class DOMException
extends Object
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 situations, such as out-of-bound errors when using NodeList.

Implementations should raise other exceptions under other circumstances. For example, implementations should raise an implementation-dependent exception if a null argument is passed.

Some languages and object systems do not support the concept of exceptions. For such systems, error conditions may be indicated using native error reporting mechanisms. For some bindings, for example, methods may return error codes similar to those listed in the corresponding method descriptions.

Note that this object is implemented and supported by the web browser and results of its use may vary.



Field Summary

public Number
code
An integer indicating the type of error generated.
public static Number
DOMSTRING_SIZE_ERR
If the specified range of text does not fit into a DOMString.
public static Number
HIERARCHY_REQUEST_ERR
If any node is inserted somewhere it doesn't belong.
public static Number
INDEX_SIZE_ERR
If index or size is negative, or greater than the allowed value.
public static Number
INUSE_ATTRIBUTE_ERR
If an attempt is made to add an attribute that is already in use elsewhere.
public static Number
INVALID_ACCESS_ERR
If a parameter or an operation is not supported by the underlying object.
public static Number
INVALID_CHARACTER_ERR
If an invalid or illegal character is specified, such as in a name.
public static Number
INVALID_MODIFICATION_ERR
If an attempt is made to modify the type of the underlying object.
public static Number
INVALID_STATE_ERR
If an attempt is made to use an object that is not, or is no longer, usable.
public static Number
NAMESPACE_ERR
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
public static Number
NO_DATA_ALLOWED_ERR
If data is specified for a node which does not support data.
public static Number
NO_MODIFICATION_ALLOWED_ERR
If an attempt is made to modify an object where modifications are not allowed.
public static Number
NOT_FOUND_ERR
If an attempt is made to reference a node in a context where it does not exist.
public static Number
NOT_SUPPORTED_ERR
If the implementation does not support the requested type of object or operation.
public static Number
SYNTAX_ERR
If an invalid or illegal string is specified.
public static Number
WRONG_DOCUMENT_ERR
If a node is used in a different document than the one that created it (that doesn't support it).


Fields inherited from org.ecmascript.object.Object

constructor, prototype


Field Detail


code

public Number code

An integer indicating the type of error generated.

Note: Other numeric codes are reserved for W3C for possible future use.

DOMSTRING_SIZE_ERR

public static Number DOMSTRING_SIZE_ERR

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

This is a readonly constant.

HIERARCHY_REQUEST_ERR

public static Number HIERARCHY_REQUEST_ERR

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

This is a readonly constant.

INDEX_SIZE_ERR

public static Number INDEX_SIZE_ERR

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

This is a readonly constant.

INUSE_ATTRIBUTE_ERR

public static Number INUSE_ATTRIBUTE_ERR

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

This is a readonly constant.

INVALID_ACCESS_ERR

public static Number INVALID_ACCESS_ERR

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

Introduced in DOM Level 2.

This is a readonly constant.

INVALID_CHARACTER_ERR

public static Number INVALID_CHARACTER_ERR

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.

This is a readonly constant.

INVALID_MODIFICATION_ERR

public static Number INVALID_MODIFICATION_ERR

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

Introduced in DOM Level 2.

This is a readonly constant.

INVALID_STATE_ERR

public static Number INVALID_STATE_ERR

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

Introduced in DOM Level 2.

This is a readonly constant.

NAMESPACE_ERR

public static Number NAMESPACE_ERR

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.

This is a readonly constant.

NO_DATA_ALLOWED_ERR

public static Number NO_DATA_ALLOWED_ERR

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

This is a readonly constant.

NO_MODIFICATION_ALLOWED_ERR

public static Number NO_MODIFICATION_ALLOWED_ERR

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

This is a readonly constant.

NOT_FOUND_ERR

public static Number NOT_FOUND_ERR

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

This is a readonly constant.

NOT_SUPPORTED_ERR

public static Number NOT_SUPPORTED_ERR

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

This is a readonly constant.

SYNTAX_ERR

public static Number SYNTAX_ERR

If an invalid or illegal string is specified.

Introduced in DOM Level 2.

This is a readonly constant.

WRONG_DOCUMENT_ERR

public static Number WRONG_DOCUMENT_ERR

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

This is a readonly constant.

SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

 

Generated on 2009.09.25 03:44 UTC
Copyright (c) 1998, 2009, Oracle and/or its affiliates. All rights reserved.