Class CryptoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.core.security.encryption.cipher.CryptoException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CipherKeyUpdateException
public class CryptoException extends Exception
Exception thrown when the encryption or the decryption failed.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
DECRYPTION_FAILURE
static String
ENCRYPTION_FAILURE
static String
KEY_GENERATION_FAILURE
-
Constructor Summary
Constructors Constructor Description CryptoException(String message)
CryptoException(String message, Throwable cause)
CryptoException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
ENCRYPTION_FAILURE
public static final String ENCRYPTION_FAILURE
- See Also:
- Constant Field Values
-
DECRYPTION_FAILURE
public static final String DECRYPTION_FAILURE
- See Also:
- Constant Field Values
-
KEY_GENERATION_FAILURE
public static final String KEY_GENERATION_FAILURE
- See Also:
- Constant Field Values
-
-