mirror of https://github.com/apache/poi.git
Add missing nested Exception in thrown Exception
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674618 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
facbded856
commit
63598c852d
|
@ -45,7 +45,7 @@ public class ThemesTable extends POIXMLDocumentPart {
|
||||||
try {
|
try {
|
||||||
theme = ThemeDocument.Factory.parse(part.getInputStream());
|
theme = ThemeDocument.Factory.parse(part.getInputStream());
|
||||||
} catch(XmlException e) {
|
} catch(XmlException e) {
|
||||||
throw new IOException(e.getLocalizedMessage());
|
throw new IOException(e.getLocalizedMessage(), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue