浏览代码

Include inner exception when re-throwing

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1917176 13f79535-47bb-0310-9956-ffa450edef68
pull/256/merge
Dominik Stadler 3 周前
父节点
当前提交
6936398b0a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      poi-ooxml/src/test/java/org/apache/poi/extractor/ooxml/TestExtractorFactory.java

+ 1
- 1
poi-ooxml/src/test/java/org/apache/poi/extractor/ooxml/TestExtractorFactory.java 查看文件

@@ -180,7 +180,7 @@ class TestExtractorFactory {
testExtractor(ext, testcase, extractor, count);
pkg.revert();
} catch (Exception e) {
throw new Exception("While handling " + testcase + " - " + testFile + " - " + extractor);
throw new Exception("While handling " + testcase + " - " + testFile + " - " + extractor, e);
}
}


正在加载...
取消
保存