also *throw* exception

This commit is contained in:
Hannes Janetzek 2013-09-28 22:18:13 +02:00
parent c1bb637fbf
commit 92abdbb328

View File

@ -92,7 +92,7 @@ public class AsyncExecutor {
try { try {
executor.awaitTermination(Long.MAX_VALUE, TimeUnit.SECONDS); executor.awaitTermination(Long.MAX_VALUE, TimeUnit.SECONDS);
} catch (InterruptedException e) { } catch (InterruptedException e) {
new RuntimeException("Couldn't shutdown loading thread"); throw new RuntimeException("Couldn't shutdown loading thread");
} }
} }
} }