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
b3c46f90c1
commit
37a7733b45
@ -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
Block a user