December 2000
Intermediate to advanced
574 pages
17h 3m
English
JspTagException
|
Class Name: |
javax.servlet.jsp.JspTagException |
|
Extends: |
javax.servlet.jsp.JspException |
|
Implements: |
None |
|
Implemented by: |
Internal container-dependent class. Most containers use the reference implementation of the class (developed in the Apache Jakarta project). |
The JspTagException is intended to be used by a
tag handler to indicate
some unrecoverable error. This exception is caught by the top level
of the JSP page and results in an error page.
public class JspTagException extends JspException {
// Constructors
public JspTagException( );
public JspTagException(String msg);
}public JspTagException( )
Creates a new JspTagException instance.
public JspTagException(String msg)
Creates a new JspTagException instance with the
specified message.
Read now
Unlock full access