Como obtenho FutureTask para retornar após TimeoutException?

No código abaixo, estou pegando um TimeoutException após 100 segundos como pretendido. Neste momento, eu esperaria que o código saísse do main e do programa para finalizar, mas ele continua imprimindo no console. Como faço para que a tarefa pare a execução após o tempo limite?

private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool();

private static <T> T timedCall(Callable<T> c, long timeout, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
    FutureTask<T> task = new FutureTask<T>(c);
    THREAD_POOL.execute(task);
    return task.get(timeout, timeUnit);
}


public static void main(String[] args) {

    try {
        int returnCode = timedCall(new Callable<Integer>() {
            public Integer call() throws Exception {
                for (int i=0; i < 1000000; i++) {
                    System.out.println(new java.util.Date());
                    Thread.sleep(1000);
                }
                return 0;
            }
        }, 100, TimeUnit.SECONDS);
    } catch (Exception e) {
        e.printStackTrace();
        return;
    }


}

questionAnswers(3)

yourAnswerToTheQuestion