Package jakarta.faces.view.facelets
Class TagAttributeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.faces.FacesException
-
- jakarta.faces.view.facelets.FaceletException
-
- jakarta.faces.view.facelets.TagAttributeException
-
- All Implemented Interfaces:
Serializable
public final class TagAttributeException extends FaceletException
An Exception caused by a
TagAttribute
- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TagAttributeException(TagAttribute attr)
Constructor.TagAttributeException(TagAttribute attr, String message)
Constructor.TagAttributeException(TagAttribute attr, String message, Throwable cause)
Constructor.TagAttributeException(TagAttribute attr, Throwable cause)
Constructor.TagAttributeException(Tag tag, TagAttribute attr)
Constructor.TagAttributeException(Tag tag, TagAttribute attr, String message)
Constructor.TagAttributeException(Tag tag, TagAttribute attr, String message, Throwable cause)
Constructor.TagAttributeException(Tag tag, TagAttribute attr, Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class jakarta.faces.FacesException
getCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TagAttributeException
public TagAttributeException(TagAttribute attr)
Constructor.- Parameters:
attr
- theTagAttribute
.
-
TagAttributeException
public TagAttributeException(TagAttribute attr, String message)
Constructor.- Parameters:
attr
- theTagAttribute
.message
- the message.
-
TagAttributeException
public TagAttributeException(TagAttribute attr, Throwable cause)
Constructor.- Parameters:
attr
- theTagAttribute
.cause
- the cause.
-
TagAttributeException
public TagAttributeException(TagAttribute attr, String message, Throwable cause)
Constructor.- Parameters:
attr
- theTagAttribute
.message
- the message.cause
- the cause.
-
TagAttributeException
public TagAttributeException(Tag tag, TagAttribute attr)
Constructor.- Parameters:
tag
- theTag
.attr
- theTagAttribute
.
-
TagAttributeException
public TagAttributeException(Tag tag, TagAttribute attr, String message)
Constructor.- Parameters:
tag
- theTag
.attr
- theTagAttribute
.message
- the message.
-
TagAttributeException
public TagAttributeException(Tag tag, TagAttribute attr, Throwable cause)
Constructor.- Parameters:
tag
- theTag
.attr
- theTagAttribute
.cause
- the cause.
-
TagAttributeException
public TagAttributeException(Tag tag, TagAttribute attr, String message, Throwable cause)
Constructor.- Parameters:
tag
- theTag
.attr
- theTagAttribute
.message
- the message.cause
- the cause.
-
-