Catch Exception on check for Woodstox version property to be on the safe side

This commit is contained in:
johannes.duenser 2017-02-27 16:04:38 +01:00
parent 194074e0cc
commit 0af1041bee
1 changed files with 1 additions and 1 deletions

View File

@ -1623,7 +1623,7 @@ public class XmlUtil {
{
isWoodstox = inputFactory.getProperty( "org.codehaus.stax2.implVersion" ) != null;
}
catch ( IllegalArgumentException e )
catch ( Exception e )
{
// ignore
}