|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.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(String msg)
Constructs a new JSP exception with the specified message. |
|
JspException(String message,
Throwable cause)
Constructs a new JspException with the specified detail
message and cause. |
|
JspException(Throwable cause)
Constructs a new JspException with the specified cause. |
Method Summary | |
---|---|
Throwable |
getRootCause()
Deprecated. As of JSP 2.1, replaced by 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(String msg)
msg
- a String
specifying the text of
the exception messagepublic JspException(String message, Throwable cause)
JspException
with the specified detail
message and cause.
The cause is saved for later retrieval by the
Throwable.getCause()
and getRootCause()
methods.
Exception.Exception(String, Throwable)
public JspException(Throwable cause)
JspException
with the specified cause.
The cause is saved for later retrieval by the
Throwable.getCause()
and getRootCause()
methods.
Exception.Exception(Throwable)
Method Detail |
---|
public Throwable getRootCause()
Throwable.getCause()
Throwable
that caused this JSP exception
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.