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 'pg/src/main/java/org/bouncycastle/openpgp/PGPDataValidationException.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/PGPDataValidationException.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/PGPDataValidationException.java b/pg/src/main/java/org/bouncycastle/openpgp/PGPDataValidationException.java
deleted file mode 100644
index d48b6996..00000000
--- a/pg/src/main/java/org/bouncycastle/openpgp/PGPDataValidationException.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.bouncycastle.openpgp;
-
-/**
- * Thrown if the iv at the start of a data stream indicates the wrong key
- * is being used.
- */
-public class PGPDataValidationException
- extends PGPException
-{
- /**
- * @param message
- */
- public PGPDataValidationException(String message)
- {
- super(message);
- }
-}