Common DOM API

com.sun.java.browser.dom
Class DOMAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.sun.java.browser.dom.DOMAccessException
All Implemented Interfaces:
Serializable

public class DOMAccessException
extends Exception

See Also:
Serialized Form

Constructor Summary
DOMAccessException()
          Constructs a new DOMAccessException with no detail message.
DOMAccessException(Exception e)
          Constructs a new DOMAccessException with the given exception as a root clause.
DOMAccessException(Exception e, String msg)
          Constructs a new DOMAccessException with the given exception as a root clause and the given detail message.
DOMAccessException(String msg)
          Constructs a new DOMAccessException with the given detail message.
 
Method Summary
 Throwable getCause()
          Returns the root cause of the error or null if there is none.
 String getMessage()
          Returns the detail message of the error or null if there is no detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DOMAccessException

public DOMAccessException()
Constructs a new DOMAccessException with no detail message.


DOMAccessException

public DOMAccessException(String msg)
Constructs a new DOMAccessException with the given detail message.

Parameters:
msg - Detail message.

DOMAccessException

public DOMAccessException(Exception e)
Constructs a new DOMAccessException with the given exception as a root clause.

Parameters:
e - Exception.

DOMAccessException

public DOMAccessException(Exception e,
                          String msg)
Constructs a new DOMAccessException with the given exception as a root clause and the given detail message.

Parameters:
e - Exception.
msg - Detail message.
Method Detail

getMessage

public String getMessage()
Returns the detail message of the error or null if there is no detail message.

Overrides:
getMessage in class Throwable
Returns:
the detail message string of this Throwable instance (which may be null).

getCause

public Throwable getCause()
Returns the root cause of the error or null if there is none.

Overrides:
getCause in class Throwable
Returns:
the cause of this throwable or null if the cause is nonexistent or unknown.

Common DOM API

Submit a bug or feature

Copyright 2010 Sun Microsystems, Inc. All rights reserved. Use is subject to the terms of the GNU General Public License.