Constructors Summary |
---|
public JspException()Construct a JspException.
|
public JspException(String msg)Constructs a new JSP exception with the
specified message. The message can be written
to the server log and/or displayed for the user.
super(msg);
|
public JspException(String message, Throwable cause)Constructs a new JspException with the specified detail
message and cause.
The cause is saved for later retrieval by the
{@link #getCause()} and {@link #getRootCause()} methods.
super(message, cause);
|
public JspException(Throwable cause)Constructs a new JspException with the specified cause.
The cause is saved for later retrieval by the
{@link #getCause()} and {@link #getRootCause()} methods.
super(cause);
|