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