Class JspException

All Implemented Interfaces:
Serializable

public class JspException extends Exception
Basic JSP Exception for Gumdrop JSP support.

This provides a minimal implementation of the JSP API's JspException class.

Author:
Chris Burdess
See Also:
  • Constructor Details

    • JspException

      public JspException()
      Construct a JspException.
    • JspException

      public JspException(String message)
      Constructs a new JSP exception with the specified message.
      Parameters:
      message - the detail message
    • JspException

      public JspException(String message, Throwable cause)
      Constructs a new JSP exception with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause
    • JspException

      public JspException(Throwable cause)
      Constructs a new JSP exception with the specified cause.
      Parameters:
      cause - the cause