FileDocCategorySizeDatePackage
NullAttributeException.javaAPI DocGlassfish v2 API2766Sat May 05 19:17:52 BST 2007org.apache.taglibs.standard.tag.common.core

NullAttributeException

public class NullAttributeException extends javax.servlet.jsp.JspTagException

NullAttributeException is a JspTagException that will be thrown by the JSTL RI handlers when a tag attribute illegally evaluates to 'null'.

author
Shawn Bayern

Fields Summary
Constructors Summary
public NullAttributeException(String tag, String att)
Constructs a NullAttributeException with appropriate information.

param
tag The name of the tag in which the error occurred.
param
att The attribute value for which the error occurred.

	super(Resources.getMessage("TAG_NULL_ATTRIBUTE", att, tag));
    
Methods Summary