Include full nested exception, not just localized message

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722502 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2016-01-01 16:27:50 +00:00
parent a6957b5c91
commit bbd6e63c60

View File

@ -127,7 +127,7 @@ public class SharedStringsTable extends POIXMLDocumentPart {
cnt++; cnt++;
} }
} catch (XmlException e) { } catch (XmlException e) {
throw new IOException(e.getLocalizedMessage()); throw new IOException(e);
} }
} }