corrected catch to use a more specific exception

Former-commit-id: 8bcd641d5be83f7ec8d182a55e0b5b52a73136d6
This commit is contained in:
Jeremy Long
2014-12-03 05:57:10 -05:00
parent aa0d7cb4e9
commit e716aad224

View File

@@ -75,7 +75,7 @@ public final class LogUtils {
if (in != null) {
try {
in.close();
} catch (Throwable ex) {
} catch (IOException ex) {
LOGGER.log(Level.FINEST, "Error closing resource stream", ex);
}
}