Fixed generic exception catching.

This commit is contained in:
Erik C. Thauvin 2020-03-30 15:42:34 -07:00
parent 1035f5ba05
commit 08260a632b

View file

@ -100,9 +100,7 @@ final class TellMessagesMgr {
}
} catch (FileNotFoundException ignore) {
// Do nothing
} catch (IOException e) {
logger.error("An IO error occurred loading the messages queue.", e);
} catch (Exception e) {
} catch (IOException | ClassNotFoundException e) {
logger.error("An error occurred loading the messages queue.", e);
}