public class FaceletException extends FacesException
An Exception from the Facelet implementation
| 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 |
getCausepublic 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