public class CompletionException extends RuntimeException
| Modifier | Constructor and Description |
|---|---|
protected |
CompletionException()
Constructs a
CompletionException with no detail message.
|
protected |
CompletionException(String
Constructs a
CompletionException with the specified detail message.
|
|
CompletionException(String
Constructs a
CompletionException with the specified detail message and cause.
|
|
CompletionException(Throwable
Constructs a
CompletionException with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringprotected CompletionException()
CompletionException with no detail message. The cause is not initialized, and may subsequently be initialized by a call to
initCause.
protected CompletionException(Stringmessage)
CompletionException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to
initCause.
message - the detail message
public CompletionException(Stringmessage, Throwable cause)
CompletionException with the specified detail message and cause.
message - the detail message
cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method)
public CompletionException(Throwablecause)
CompletionException with the specified cause. The detail message is set to
(cause == null ? null : cause.toString()) (which typically contains the class and detail message of
cause).
cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method)