javax.servlet
public class: ServletException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.ServletException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
UnavailableException
Defines a general exception a servlet can throw when it
encounters difficulty.
- author:
Various
-
- version:
$
- Version$
Method from javax.servlet.ServletException Summary: |
---|
getRootCause |
Methods from java.lang.Throwable: |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.servlet.ServletException Detail: |
public Throwable getRootCause() {
return getCause();
}
Returns the exception that caused this servlet exception. |