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/j2me/org/bouncycastle/openpgp/PGPSignatureException.java')
-rw-r--r--pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignatureException.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignatureException.java b/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignatureException.java
deleted file mode 100644
index 44bf8aee..00000000
--- a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignatureException.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package org.bouncycastle.openpgp;
-
-public class PGPSignatureException
- extends PGPException
-{
- public PGPSignatureException(String message)
- {
- super(message);
- }
-
- public PGPSignatureException(String message, Exception cause)
- {
- super(message, cause);
- }
-}