public class AbortProcessingException extends FacesException
An exception that may be thrown by event listeners to terminate the processing of the current event.
Constructor and Description |
---|
AbortProcessingException()
Construct a new exception with no detail message or root cause.
|
AbortProcessingException(java.lang.String message)
Construct a new exception with the specified detail message and no root cause.
|
AbortProcessingException(java.lang.String message,
java.lang.Throwable cause)
Construct a new exception with the specified detail message and root cause.
|
AbortProcessingException(java.lang.Throwable cause)
Construct a new exception with the specified root cause.
|
getCause
public AbortProcessingException()
Construct a new exception with no detail message or root cause.
public AbortProcessingException(java.lang.String message)
Construct a new exception with the specified detail message and no root cause.
message
- The detail message for this exceptionpublic AbortProcessingException(java.lang.Throwable cause)
Construct a new exception with the specified root cause.
cause
- The root cause for this exceptionpublic AbortProcessingException(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 exception