aboutsummaryrefslogtreecommitdiffstats
path: root/src/ooxml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2015-04-19 12:35:19 +0000
committerDominik Stadler <centic@apache.org>2015-04-19 12:35:19 +0000
commit63598c852daef5cb6583b353a0f766d0f9cf9b4d (patch)
treee331cf9883c5f0350887c77a97a35a12cc8fefc6 /src/ooxml
parentfacbded856036a978a7874e1b392f74a9baea252 (diff)
downloadpoi-63598c852daef5cb6583b353a0f766d0f9cf9b4d.tar.gz
poi-63598c852daef5cb6583b353a0f766d0f9cf9b4d.zip
Add missing nested Exception in thrown Exception
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674618 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml')
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/model/ThemesTable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/model/ThemesTable.java b/src/ooxml/java/org/apache/poi/xssf/model/ThemesTable.java
index 0e8f906339..bf58989ccb 100644
--- a/src/ooxml/java/org/apache/poi/xssf/model/ThemesTable.java
+++ b/src/ooxml/java/org/apache/poi/xssf/model/ThemesTable.java
@@ -45,7 +45,7 @@ public class ThemesTable extends POIXMLDocumentPart {
try {
theme = ThemeDocument.Factory.parse(part.getInputStream());
} catch(XmlException e) {
- throw new IOException(e.getLocalizedMessage());
+ throw new IOException(e.getLocalizedMessage(), e);
}
}