--- src/org/jmock/lib/concurrent/DeterministicScheduler.java 2008-06-23 14:06:51.000000000 +0200 +++ src/org/jmock/lib/concurrent/DeterministicScheduler.java-gil 2011-07-27 20:46:08.446224533 +0200 @@ -110,21 +110,21 @@ throw blockingOperationsNotSupported(); } - public List> invokeAll(Collection> tasks) throws InterruptedException { + public List> invokeAll(Collection> tasks) throws InterruptedException { throw blockingOperationsNotSupported(); } - public List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException { + public List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException { throw blockingOperationsNotSupported(); } - public T invokeAny(Collection> tasks) + public T invokeAny(Collection> tasks) throws InterruptedException, ExecutionException { throw blockingOperationsNotSupported(); } - public T invokeAny(Collection> tasks, long timeout, TimeUnit unit) + public T invokeAny(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { throw blockingOperationsNotSupported();