public class FaceletException extends FacesException
An Exception from the Facelet implementation
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
FaceletException()
Create an empty
|
FaceletException(java.lang.String message)
Create a
|
FaceletException(java.lang.String message,
java.lang.Throwable cause)
Wrap argument |
FaceletException(java.lang.Throwable cause)
Wrap argument |
getCauseprivate static final long serialVersionUID
public FaceletException()
Create an empty
FaceletException.
public FaceletException(java.lang.String message)
Create a
FaceletException with argument message
as the message.
message - the textual message to display for the exception.public FaceletException(java.lang.Throwable cause)
Wrap argument cause
within this FaceletException instance.
cause - the Throwable to wrappublic FaceletException(java.lang.String message,
java.lang.Throwable cause)
Wrap argument cause in
a FaceletException instance, with a message given by
the argument message.
message - the message for the FacesExceptioncause - the root cause