mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-10 12:10:16 -05:00
35 lines
845 B
Java
35 lines
845 B
Java
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);
|
|
}
|
|
}
|