com.ideaaedi.commonds.exception.CryptographyException Maven / Gradle / Ivy
The newest version!
package com.ideaaedi.commonds.exception;
/**
* 密码学相关异常
*
* @author JustryDeng
* @since 1.0.0
*/
public class CryptographyException extends RuntimeException {
public CryptographyException() {
}
public CryptographyException(String message) {
super(message);
}
public CryptographyException(String message, Throwable cause) {
super(message, cause);
}
public CryptographyException(Throwable cause) {
super(cause);
}
public CryptographyException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}