FileDocCategorySizeDatePackage
CancellationException.javaAPI DocAndroid 1.5 API935Wed May 06 22:41:02 BST 2009java.util.concurrent

CancellationException

public 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.
since
1.5
author
Doug Lea

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.

param
message the detail message

        super(message);
    
Methods Summary