Added exception when trying to parse zip file, that looks like zip file, but has errors

This commit is contained in:
nathan 2015-11-15 14:53:17 +01:00
parent fafc447f5c
commit 409f1f7410

View File

@ -641,6 +641,9 @@ class FileUtil {
}
} catch (Exception e) {
isZip = false;
if (e instanceof FileNotFoundException) {
e.printStackTrace();
}
} finally {
if (raf != null) {
try {