public class

DOMAccessException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.sun.java.browser.dom.DOMAccessException

Summary

Public Constructors
DOMAccessException()
Constructs a new DOMAccessException with no detail message.
DOMAccessException(String msg)
Constructs a new DOMAccessException with the given 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.
Public Methods
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.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public DOMAccessException ()

Constructs a new DOMAccessException with no detail message.

public DOMAccessException (String msg)

Constructs a new DOMAccessException with the given detail message.

Parameters
msg Detail message.

public DOMAccessException (Exception e)

Constructs a new DOMAccessException with the given exception as a root clause.

Parameters
e Exception.

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.

Public Methods

public Throwable getCause ()

Returns the root cause of the error or null if there is none.

Returns
  • the cause of this throwable or null if the cause is nonexistent or unknown.

public String getMessage ()

Returns the detail message of the error or null if there is no detail message.

Returns
  • the detail message string of this Throwable instance (which may be null).