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/PGPRuntimeOperationException.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/PGPRuntimeOperationException.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/PGPRuntimeOperationException.java b/pg/src/main/java/org/bouncycastle/openpgp/PGPRuntimeOperationException.java
deleted file mode 100644
index c4067ec0..00000000
--- a/pg/src/main/java/org/bouncycastle/openpgp/PGPRuntimeOperationException.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.bouncycastle.openpgp;
-
-public class PGPRuntimeOperationException
- extends RuntimeException
-{
- private final Throwable cause;
-
- public PGPRuntimeOperationException(String message, Throwable cause)
- {
- super(message);
-
- this.cause = cause;
- }
-
- public Throwable getCause()
- {
- return cause;
- }
-}