#59766 Need to catch Errors as well when trying to tweak SAX stuff

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750408 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2016-06-27 19:57:33 +00:00
parent 9aecc1aca9
commit ce11dfd891
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,8 @@ public final class SAXHelper {
return;
} catch (Exception e) {
logger.log(POILogger.WARN, "SAX Security Manager could not be setup", e);
} catch (Error err) {
logger.log(POILogger.WARN, "SAX Security Manager could not be setup", err);
}
}
}