public final class TagException extends FaceletException
An Exception caused by a Tag
| Constructor and Description |
|---|
TagException(Tag tag)
Wrap the argument |
TagException(Tag tag,
java.lang.String message)
Wrap the argument |
TagException(Tag tag,
java.lang.String message,
java.lang.Throwable cause)
Wrap the argument |
TagException(Tag tag,
java.lang.Throwable cause)
Wrap the argument |
getCausepublic TagException(Tag tag)
Wrap the argument tag
so the exception can reference its information.
tag - the Tag that caused this exception.public TagException(Tag tag, java.lang.String message)
Wrap the argument tag
so the exception can reference its information.
tag - the Tag that caused this exception.message - a message describing the exceptionpublic TagException(Tag tag, java.lang.Throwable cause)
Wrap the argument tag
so the exception can reference its information.
tag - the Tag that caused this exception.cause - the root cause for this exception.public TagException(Tag tag, java.lang.String message, java.lang.Throwable cause)
Wrap the argument tag
so the exception can reference its information.
tag - the Tag that caused this exception.message - a message describing the exceptioncause - the root cause for this exception.