FileDocCategorySizeDatePackage
JasperException.javaAPI DocApache Tomcat 6.0.141577Fri Jul 20 04:20:30 BST 2007org.apache.jasper

JasperException

public class JasperException extends 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

Fields Summary
Constructors Summary
public JasperException(String reason)

	super(reason);
    
public JasperException(String reason, Throwable exception)
Creates a JasperException with the embedded exception and the reason for throwing a JasperException

   	super(reason, exception);
    
public JasperException(Throwable exception)
Creates a JasperException with the embedded exception

   	super(exception);
    
Methods Summary