public class AttributeExpressionException extends TagParseException
An AttributeExpressionException is a particular kind of
TagParseException that indicates that there was a problem
evaluating a JEXL Expression that was encountered as part of an attribute
value on a JETT tag.
Usually JEXL has its own mechanism of either creating a warning log
message or returning null, but nulls are
problematic for AttributeUtil, which usually expects some kind
of value to result for an attribute of a JETT tag.
| Constructor | Description |
|---|---|
AttributeExpressionException() |
Create a
AttributeExpressionException. |
AttributeExpressionException(java.lang.String message) |
Create a
AttributeExpressionException with the given message. |
AttributeExpressionException(java.lang.String message,
java.lang.Throwable cause) |
Create a
AttributeExpressionException with the given message. |
AttributeExpressionException(java.lang.Throwable cause) |
Create a
AttributeExpressionException. |
public AttributeExpressionException()
AttributeExpressionException.public AttributeExpressionException(java.lang.String message)
AttributeExpressionException with the given message.message - The message.public AttributeExpressionException(java.lang.Throwable cause)
AttributeExpressionException.cause - The cause.public AttributeExpressionException(java.lang.String message,
java.lang.Throwable cause)
AttributeExpressionException with the given message.message - The message.cause - The cause.Copyright © 2012–2018 Jett Team. All rights reserved.