io.polaris.core.err.CryptoRuntimeException Maven / Gradle / Ivy
package io.polaris.core.err;
/**
* @author Qt
* @since 1.8, Jan 19, 2024
*/
public class CryptoRuntimeException extends RuntimeException{
private static final long serialVersionUID = 1L;
public CryptoRuntimeException() {
}
public CryptoRuntimeException(String message) {
super(message);
}
public CryptoRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public CryptoRuntimeException(Throwable cause) {
super(cause);
}
public CryptoRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}