Class NullAttributeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.jsp.JspException
javax.servlet.jsp.JspTagException
org.apache.taglibs.standard.tag.common.core.NullAttributeException
- All Implemented Interfaces:
Serializable
NullAttributeException is a JspTagException that will be thrown by the JSTL RI handlers when a tag attribute illegally evaluates to 'null'.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNullAttributeException(String tag, String att) Constructs a NullAttributeException with appropriate information. -
Method Summary
Methods inherited from class javax.servlet.jsp.JspException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NullAttributeException
Constructs a NullAttributeException with appropriate information.- Parameters:
tag- The name of the tag in which the error occurred.att- The attribute value for which the error occurred.
-