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 'core/src/main/java/org/bouncycastle/util/encoders/DecoderException.java')
-rw-r--r--core/src/main/java/org/bouncycastle/util/encoders/DecoderException.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/core/src/main/java/org/bouncycastle/util/encoders/DecoderException.java b/core/src/main/java/org/bouncycastle/util/encoders/DecoderException.java
deleted file mode 100644
index 1e6782a5..00000000
--- a/core/src/main/java/org/bouncycastle/util/encoders/DecoderException.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.bouncycastle.util.encoders;
-
-/**
- * Exception thrown if an attempt is made to decode invalid data, or some other failure occurs.
- */
-public class DecoderException
- extends IllegalStateException
-{
- private Throwable cause;
-
- DecoderException(String msg, Throwable cause)
- {
- super(msg);
-
- this.cause = cause;
- }
-
- public Throwable getCause()
- {
- return cause;
- }
-}