public class CustomFutureTask<V> extends FutureTask<V>
{
/**
* Creates a <tt>FutureTask</tt> that will upon running, execute the
* given <tt>Callable</tt>.
*
* @param callable the callable task
*
* @throws NullPointerException if callable is null
*/
public CustomFutureTask(Callable<V> vCallable)
{
super(vCallable);
}
}