| 
JSP 2.2 - Apache Tomcat 7.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.servlet.jsp.JspException
public class JspException
A generic exception known to the JSP engine; uncaught JspExceptions will result in an invocation of the errorpage machinery.
| Constructor Summary | |
|---|---|
JspException()
Construct a JspException.  | 
|
JspException(java.lang.String msg)
Constructs a new JSP exception with the specified message.  | 
|
JspException(java.lang.String message,
             java.lang.Throwable cause)
Constructs a new JSPException with the specified detail
 message and cause. | 
|
JspException(java.lang.Throwable cause)
Constructs a new JSPException with the specified cause. | 
|
| Method Summary | |
|---|---|
 java.lang.Throwable | 
getRootCause()
Deprecated. As of JSP 2.1, replaced by java.lang.Throwable.getCause() | 
| Methods inherited from class java.lang.Throwable | 
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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 | 
|---|
public JspException()
public JspException(java.lang.String msg)
msg - a String specifying the text of the exception
              message
public JspException(java.lang.String message,
                    java.lang.Throwable cause)
JSPException with the specified detail
 message and cause. The cause is saved for later retrieval by the
 java.lang.Throwable.getCause() and getRootCause()
 methods.
message - a String containing the text of the
                      exception messagecause - the Throwable exception that
                      interfered with the JSP's normal operation,
                      making this JSP exception necessaryjava.lang.Exception.Exception(String, Throwable)public JspException(java.lang.Throwable cause)
JSPException with the specified cause.
 The cause is saved for later retrieval by the
 java.lang.Throwable.getCause() and getRootCause()
 methods.
cause - the Throwable exception that
                      interfered with the JSP's normal operation, making
                      the JSP exception necessaryjava.lang.Exception.Exception(Throwable)| Method Detail | 
|---|
public java.lang.Throwable getRootCause()
java.lang.Throwable.getCause()
Throwable that caused this JSP exception
  | 
JSP 2.2 - Apache Tomcat 7.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||