|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.RuntimeException | +--javax.faces.FacesException
This class encapsulates general JavaServer Faces exceptions.
Constructor Summary | |
FacesException()
Construct a new exception with no detail message or root cause. |
|
FacesException(java.lang.String message)
Construct a new exception with the specified detail message and no root cause. |
|
FacesException(java.lang.String message,
java.lang.Throwable cause)
Construct a new exception with the specified detail message and root cause. |
|
FacesException(java.lang.Throwable cause)
Construct a new exception with the specified root cause. |
Method Summary | |
java.lang.Throwable |
getCause()
Return the cause of this exception, or null if the
cause is nonexistent or unknown. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public FacesException()
Construct a new exception with no detail message or root cause.
public FacesException(java.lang.String message)
Construct a new exception with the specified detail message and no root cause.
message
- The detail message for this exceptionpublic FacesException(java.lang.Throwable cause)
Construct a new exception with the specified root cause. The detail
message will be set to (cause == null ? null :
cause.toString()
cause
- The root cause for this exceptionpublic FacesException(java.lang.String message, java.lang.Throwable cause)
Construct a new exception with the specified detail message and root cause.
message
- The detail message for this exceptioncause
- The root cause for this exceptionMethod Detail |
public java.lang.Throwable getCause()
Return the cause of this exception, or null
if the
cause is nonexistent or unknown.
getCause
in class java.lang.Throwable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |