JspException(String msg) Constructs a new JSP exception with the
specified message.
public
JspException(String message, Throwable rootCause) Constructs a new JSP exception when the JSP
needs to throw an exception and include a message
about the "root cause" exception that interfered with its
normal operation, including a description message.
public
JspException(Throwable rootCause) Constructs a new JSP exception when the JSP
needs to throw an exception and include a message
about the "root cause" exception that interfered with its
normal operation.
Constructs a new JSP exception with the
specified message. The message can be written
to the server log and/or displayed for the user.
Parameters: msg - a String specifying the text of the exception message
Constructs a new JSP exception when the JSP
needs to throw an exception and include a message
about the "root cause" exception that interfered with its
normal operation, including a description message.
Parameters: message - a String containing the text of the exception message Parameters: rootCause - the Throwable exception that interfered with the servlet'snormal operation, making this servletexception necessary
Constructs a new JSP exception when the JSP
needs to throw an exception and include a message
about the "root cause" exception that interfered with its
normal operation. The exception's message is based on the localized
message of the underlying exception.
This method calls the getLocalizedMessage method
on the Throwable exception to get a localized exception
message. When subclassing JspException,
this method can be overridden to create an exception message
designed for a specific locale.
Parameters: rootCause - the Throwable exceptionthat interfered with the JSP'snormal operation, making the JSP exceptionnecessary