Avoid exception report during shutdown

This commit is contained in:
Mike Primm 2022-02-16 18:43:30 -06:00
parent 342e67e205
commit 3a39688dc8
1 changed files with 2 additions and 0 deletions

View File

@ -926,6 +926,8 @@ public class MapManager {
f.get();
} catch (CancellationException cx) {
return;
} catch (InterruptedException cx) {
return;
} catch (ExecutionException ex) {
Log.severe("Error while checking world times: ", ex.getCause());
} catch (Exception ix) {