also *throw* exception

This commit is contained in:
Hannes Janetzek
2013-11-23 21:11:04 +01:00
parent c1bb637fbf
commit 92abdbb328
@@ -92,7 +92,7 @@ public class AsyncExecutor {
try {
executor.awaitTermination(Long.MAX_VALUE, TimeUnit.SECONDS);
} catch (InterruptedException e) {
new RuntimeException("Couldn't shutdown loading thread");
throw new RuntimeException("Couldn't shutdown loading thread");
}
}
}