aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java')
-rw-r--r--libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java b/libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java
deleted file mode 100644
index e17ab0cf1..000000000
--- a/libraries/spongycastle/jce/src/main/java/javax/crypto/ExemptionMechanismException.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package javax.crypto;
-
-import java.security.GeneralSecurityException;
-
-/**
- * This is the generic ExemptionMechanism exception.
- *
- */
-public class ExemptionMechanismException
- extends GeneralSecurityException
-{
- private static final long serialVersionUID = 1572699429277957109L;
-
- /**
- * Constructs a ExemptionMechanismException with no detailed message.
- * (A detailed message is a String that describes this particular exception.)
- */
- public ExemptionMechanismException()
- {
- }
-
- /**
- * Constructs a ExemptionMechanismException with the specified
- * detailed message. (A detailed message is a String that describes
- * this particular exception.)
- *
- * @param msg the detailed message.
- */
- public ExemptionMechanismException(
- String msg)
- {
- super(msg);
- }
-}