CancellationExceptionpublic class CancellationException extends IllegalStateException Exception indicating that the result of a value-producing task,
such as a {@link FutureTask}, cannot be retrieved because the task
was cancelled. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public CancellationException()Constructs a CancellationException with no detail message.
| public CancellationException(String message)Constructs a CancellationException with the specified detail
message.
super(message);
|
|