All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.w3c.dom.DOMException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----org.w3c.dom.DOMException

public abstract class DOMException
extends RuntimeException
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 .

Implementations may raise other exceptions under other circumstances. For example, implementations may 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.


Variable Index

 o code
 o DOMSTRING_SIZE_ERR
 o HIERARCHY_REQUEST_ERR
 o INDEX_SIZE_ERR
 o INUSE_ATTRIBUTE_ERR
 o INVALID_CHARACTER_ERR
 o NO_DATA_ALLOWED_ERR
 o NO_MODIFICATION_ALLOWED_ERR
 o NOT_FOUND_ERR
 o NOT_SUPPORTED_ERR
 o WRONG_DOCUMENT_ERR

Constructor Index

 o DOMException(int, String)

Variables

 o INDEX_SIZE_ERR
 public static final int INDEX_SIZE_ERR
 o DOMSTRING_SIZE_ERR
 public static final int DOMSTRING_SIZE_ERR
 o HIERARCHY_REQUEST_ERR
 public static final int HIERARCHY_REQUEST_ERR
 o WRONG_DOCUMENT_ERR
 public static final int WRONG_DOCUMENT_ERR
 o INVALID_CHARACTER_ERR
 public static final int INVALID_CHARACTER_ERR
 o NO_DATA_ALLOWED_ERR
 public static final int NO_DATA_ALLOWED_ERR
 o NO_MODIFICATION_ALLOWED_ERR
 public static final int NO_MODIFICATION_ALLOWED_ERR
 o NOT_FOUND_ERR
 public static final int NOT_FOUND_ERR
 o NOT_SUPPORTED_ERR
 public static final int NOT_SUPPORTED_ERR
 o INUSE_ATTRIBUTE_ERR
 public static final int INUSE_ATTRIBUTE_ERR
 o code
 public int code

Constructors

 o DOMException
 public DOMException(int code,
                     String message)

All Packages  Class Hierarchy  This Package  Previous  Next  Index