com.siashan.toolkit.crypt.CryptException Maven / Gradle / Ivy
package com.siashan.toolkit.crypt;
/**
* 加密异常类
*
* @author siashan
* @since 1.0.7
*
*/
public class CryptException extends RuntimeException {
private static final long serialVersionUID = 8068509879445395353L;
public CryptException() {super();}
public CryptException(Throwable e) {
super(e);
}
public CryptException(String message) {
super(message);
}
public CryptException(String message, Throwable throwable) {
super(message, throwable);
}
}