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(short, String)

Variables

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

Constructors

 o DOMException
 public DOMException(short code,
                     String message)

All Packages  Class Hierarchy  This Package  Previous  Next  Index