aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java
deleted file mode 100644
index f21641d62..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/CertIOException.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package org.spongycastle.cert;
-
-import java.io.IOException;
-
-/**
- * General IOException thrown in the cert package and its sub-packages.
- */
-public class CertIOException
- extends IOException
-{
- private Throwable cause;
-
- public CertIOException(String msg, Throwable cause)
- {
- super(msg);
-
- this.cause = cause;
- }
-
- public CertIOException(String msg)
- {
- super(msg);
- }
-
- public Throwable getCause()
- {
- return cause;
- }
-}