public class

DOMUnsupportedException

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

Summary

Public Constructors
DOMUnsupportedException()
Constructs a new DOMUnsupportedException with no detail message.
DOMUnsupportedException(String msg)
Constructs a new DOMUnsupportedException with the given detail message.
DOMUnsupportedException(Exception e)
Constructs a new DOMUnsupportedException with the given exception as a root clause.
DOMUnsupportedException(Exception e, String msg)
Constructs a new DOMUnsupportedException 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 DOMUnsupportedException ()

Constructs a new DOMUnsupportedException with no detail message.

public DOMUnsupportedException (String msg)

Constructs a new DOMUnsupportedException with the given detail message.

Parameters
msg Detail message.

public DOMUnsupportedException (Exception e)

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

Parameters
e Exception.

public DOMUnsupportedException (Exception e, String msg)

Constructs a new DOMUnsupportedException 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).