Package org.apache.jasper
Class JasperException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.servlet.ServletException
-
- org.apache.jasper.JasperException
-
- All Implemented Interfaces:
Serializable
public class JasperException extends javax.servlet.ServletException
Base class for all exceptions generated by the JSP engine. Makes it convienient to catch just this at the top-level.- Author:
- Anil K. Vijendran
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JasperException(String reason)
JasperException(String reason, Throwable exception)
Creates a JasperException with the embedded exception and the reason for throwing a JasperExceptionJasperException(Throwable exception)
Creates a JasperException with the embedded exception
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JasperException
public JasperException(String reason)
-
JasperException
public JasperException(String reason, Throwable exception)
Creates a JasperException with the embedded exception and the reason for throwing a JasperException
-
JasperException
public JasperException(Throwable exception)
Creates a JasperException with the embedded exception
-
-