API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom. DOMException View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      Throwable
          Exception
              RuntimeException
                  DOMException
Implements
Subclasses
Description
public exception DOMException
  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).
See also:   
Constructors
public DOMException (short code, String message)
Methods
Hide/Show inherited methods
publicsynchronizednative Throwable fillInStackTrace () [Inherited From Throwable]
  Fills in the execution stack trace.
public Throwable getCause () [Inherited From Throwable]
  Returns the cause of this throwable or null if the cause is nonexistent or unknown.
public String getLocalizedMessage () [Inherited From Throwable]
  Creates a localized description of this throwable.
public String getMessage () [Inherited From Throwable]
  Returns the detail message string of this throwable.
public StackTraceElement getStackTrace () [Inherited From Throwable]
  Provides programmatic access to the stack trace information printed by Throwable.printStackTrace().
publicsynchronized Throwable initCause (Throwable cause) [Inherited From Throwable]
  Initializes the cause of this throwable to the specified value.
public void printStackTrace () [Inherited From Throwable]
  Prints this throwable and its backtrace to the standard error stream.
public void printStackTrace (PrintStream s) [Inherited From Throwable]
  Prints this throwable and its backtrace to the specified print stream.
public void printStackTrace (PrintWriter s) [Inherited From Throwable]
  Prints this throwable and its backtrace to the specified print writer.
public void setStackTrace (StackTraceElement stackTrace) [Inherited From Throwable]
  Sets the stack trace elements that will be returned by Throwable.getStackTrace() and printed by Throwable.printStackTrace() and related methods.
public String toString () [Inherited From Throwable]
  Returns a short description of this throwable.
Fields
Hide/Show inherited fields
public short code
publicfinalstatic short DOMSTRING_SIZE_ERR = "2"
If the specified range of text does not fit into a DOMString.
publicfinalstatic short HIERARCHY_REQUEST_ERR = "3"
If any Node is inserted somewhere it doesn't belong.
publicfinalstatic short INDEX_SIZE_ERR = "1"
If index or size is negative, or greater than the allowed value.
publicfinalstatic short INUSE_ATTRIBUTE_ERR = "10"
If an attempt is made to add an attribute that is already in use elsewhere.
publicfinalstatic short INVALID_ACCESS_ERR = "15"
  If a parameter or an operation is not supported by the underlying object.
publicfinalstatic short INVALID_CHARACTER_ERR = "5"
If an invalid or illegal character is specified, such as in an XML name.
publicfinalstatic short INVALID_MODIFICATION_ERR = "13"
  If an attempt is made to modify the type of the underlying object.
publicfinalstatic short INVALID_STATE_ERR = "11"
  If an attempt is made to use an object that is not, or is no longer, usable.
publicfinalstatic short NAMESPACE_ERR = "14"
  If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
publicfinalstatic short NO_DATA_ALLOWED_ERR = "6"
If data is specified for a Node which does not support data.
publicfinalstatic short NO_MODIFICATION_ALLOWED_ERR = "7"
If an attempt is made to modify an object where modifications are not allowed.
publicfinalstatic short NOT_FOUND_ERR = "8"
If an attempt is made to reference a Node in a context where it does not exist.
publicfinalstatic short NOT_SUPPORTED_ERR = "9"
If the implementation does not support the requested type of object or operation.
pack-privatefinalstatic long serialVersionUID = "6627732366795969916"
publicfinalstatic short SYNTAX_ERR = "12"
  If an invalid or illegal string is specified.
publicfinalstatic short TYPE_MISMATCH_ERR = "17"
  If the type of an object is incompatible with the expected type of the parameter associated to the object.
publicfinalstatic short VALIDATION_ERR = "16"
  If a call to a method such as insertBefore or removeChild would make the Node invalid with respect to "partial validity", this exception would be raised and the operation would not be done.
publicfinalstatic short WRONG_DOCUMENT_ERR = "4"
If a Node is used in a different document than the one that created it (that doesn't support it).
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar