Class JasperException

All Implemented Interfaces:
Serializable

public class JasperException extends ServletException
Base class for all exceptions generated by the JSP engine. Makes it convenient to catch just this at the top-level.
Author:
Anil K. Vijendran
See Also:
  • Constructor Details

    • 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.
      Parameters:
      reason - The exception message
      exception - The root cause
    • JasperException

      public JasperException(Throwable exception)
      Creates a JasperException with the embedded exception.
      Parameters:
      exception - The root cause