All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.k7g.alloy.exception.AlloyContentDecodeException Maven / Gradle / Ivy

package cn.k7g.alloy.exception;

/**
 * 解密异常
 * @author victor-wu
 * @date 2021/9/27 下午1:10
 */
public class AlloyContentDecodeException extends RuntimeException {
    public AlloyContentDecodeException(String message) {
        super(message);
    }

    public AlloyContentDecodeException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy