summaryrefslogtreecommitdiffstats
path: root/bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java')
-rw-r--r--bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java b/bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java
deleted file mode 100644
index c5e3897..0000000
--- a/bcpkix/src/main/java/org/bouncycastle/dvcs/DVCSException.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package org.bouncycastle.dvcs;
-
-/**
- * General DVCSException.
- */
-public class DVCSException
- extends Exception
-{
- private static final long serialVersionUID = 389345256020131488L;
-
- private Throwable cause;
-
- public DVCSException(String message)
- {
- super(message);
- }
-
- public DVCSException(String message, Throwable cause)
- {
- super(message);
- this.cause = cause;
- }
-
- public Throwable getCause()
- {
- return cause;
- }
-}