public class JspException
extends java.lang.Exception
| Constructor and Description | 
|---|
| 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  JSPExceptionwith the specified detail
 message and cause. | 
| JspException(java.lang.Throwable cause)Constructs a new  JSPExceptionwith the specified cause. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Throwable | getRootCause()Deprecated. 
 As of JSP 2.1, replaced by
  java.lang.Throwable.getCause() | 
public JspException()
public JspException(java.lang.String msg)
msg - a String specifying the text of the exception
              messagepublic 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 necessaryException.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 necessaryException.Exception(Throwable)Copyright © 2000-2020 Apache Software Foundation. All Rights Reserved.