Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'prov/src/main/java/org/bouncycastle/jce/exception/ExtException.java')
-rw-r--r--prov/src/main/java/org/bouncycastle/jce/exception/ExtException.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/prov/src/main/java/org/bouncycastle/jce/exception/ExtException.java b/prov/src/main/java/org/bouncycastle/jce/exception/ExtException.java
deleted file mode 100644
index 52c60ded..00000000
--- a/prov/src/main/java/org/bouncycastle/jce/exception/ExtException.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.bouncycastle.jce.exception;
-
-/**
- *
- * This is an extended exception. Java before version 1.4 did not offer the
- * possibility the attach a cause to an exception. The cause of an exception is
- * the <code>Throwable</code> object which was thrown and caused the
- * exception. This interface must be implemented by all exceptions to accomplish
- * this additional functionality.
- *
- */
-public interface ExtException
-{
-
- /**
- * Returns the cause of the exception.
- *
- * @return The cause of the exception.
- */
- Throwable getCause();
-}