FileDocCategorySizeDatePackage
NullAttributeException.javaAPI DocGlassfish v2 API2748Sat May 05 19:17:12 BST 2007org.apache.taglibs.standard.examples.taglib

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 ExpressionException 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("The '" + att + "' attribute illegally evaluated to 'null' "
	    + "in <" + tag + ">.");
    
Methods Summary