aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2018-04-25 10:03:39 +0000
committerAndreas Beeker <kiwiwings@apache.org>2018-04-25 10:03:39 +0000
commit4e26e6a8d8fea055f17fe856c01f359362c4ff58 (patch)
treee1e3896e4899eff93db1682b5d7e03232f544415 /src/java/org
parenta276d5d3f6b3c332cde1d2cf586379c6af4e3a0b (diff)
downloadpoi-4e26e6a8d8fea055f17fe856c01f359362c4ff58.tar.gz
poi-4e26e6a8d8fea055f17fe856c01f359362c4ff58.zip
Bug 62187 - commit Commons Compress unrelated changes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1830061 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r--src/java/org/apache/poi/UnsupportedFileFormatException.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/UnsupportedFileFormatException.java b/src/java/org/apache/poi/UnsupportedFileFormatException.java
index a8caebb4bf..b893639514 100644
--- a/src/java/org/apache/poi/UnsupportedFileFormatException.java
+++ b/src/java/org/apache/poi/UnsupportedFileFormatException.java
@@ -23,7 +23,11 @@ package org.apache.poi;
public abstract class UnsupportedFileFormatException extends IllegalArgumentException {
private static final long serialVersionUID = -8281969197282030046L;
- public UnsupportedFileFormatException(String s) {
+ protected UnsupportedFileFormatException(String s) {
super(s);
}
+
+ protected UnsupportedFileFormatException(String message, Throwable cause) {
+ super(message, cause);
+ }
} \ No newline at end of file