Package javax.servlet.jsp
Class JspException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.jsp.JspException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionConstruct a JspException.JspException(String message) Constructs a new JSP exception with the specified message.JspException(String message, Throwable cause) Constructs a new JSP exception with the specified detail message and cause.JspException(Throwable cause) Constructs a new JSP exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JspException
public JspException()Construct a JspException. -
JspException
Constructs a new JSP exception with the specified message.- Parameters:
message- the detail message
-
JspException
Constructs a new JSP exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-
JspException
Constructs a new JSP exception with the specified cause.- Parameters:
cause- the cause
-