| java.lang.Object java.lang.Throwable java.lang.Exception javax.servlet.jsp.JspException
All known Subclasses: javax.servlet.jsp.JspTagException, javax.servlet.jsp.SkipPageException,
JspException | public class JspException extends Exception (Code) | | A generic exception known to the JSP engine; uncaught
JspExceptions will result in an invocation of the errorpage
machinery.
|
JspException | public JspException()(Code) | | Construct a JspException.
|
JspException | public JspException(String msg)(Code) | | Constructs a new JSP exception with the
specified message. The message can be written
to the server log and/or displayed for the user.
Parameters: msg - a String specifying the text of the exceptionmessage |
JspException | public JspException(String message, Throwable cause)(Code) | | Constructs a new JSPException with the specified detail
message and cause. The cause is saved for later retrieval by the
java.lang.Throwable.getCause() and
JspException.getRootCause() methods.
See Also: java.lang.Exception.Exception(String, Throwable) Parameters: message - a String containing the text of theexception message Parameters: cause - the Throwable exception thatinterfered with the JSP's normal operation,making this JSP exception necessary |
JspException | public JspException(Throwable cause)(Code) | | Constructs a new JSPException with the specified cause.
The cause is saved for later retrieval by the
java.lang.Throwable.getCause() and
JspException.getRootCause() methods.
See Also: java.lang.Exception.Exception(Throwable) Parameters: cause - the Throwable exception thatinterfered with the JSP's normal operation, makingthe JSP exception necessary |
getRootCause | public Throwable getRootCause()(Code) | | the Throwable that caused this JSP exception |
|
|