mirror of https://github.com/apache/poi.git
#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:
parent
9aecc1aca9
commit
ce11dfd891
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue