com.xwc1125.chain5j.crypto.CipherException Maven / Gradle / Ivy
package com.xwc1125.chain5j.crypto;
/**
* Cipher exception wrapper.
*/
public class CipherException extends Exception {
public CipherException(String message) {
super(message);
}
public CipherException(Throwable cause) {
super(cause);
}
public CipherException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy