
top.lshaci.framework.redis.exception.RedisException Maven / Gradle / Ivy
The newest version!
package top.lshaci.framework.redis.exception;
import top.lshaci.framework.common.exception.BaseException;
import top.lshaci.framework.redis.enums.RedisErrorInfo;
/**
* Framework redis exception
*
* @author lshaci
* @version 1.1.o
* @since 1.0.0
*/
public class RedisException extends BaseException {
private static final long serialVersionUID = 8582645036430072514L;
/**
* 创建redis异常
*
* @param errorInfo 异常信息
* @param args 消息参数
*/
public RedisException(RedisErrorInfo errorInfo, Object... args) {
super(errorInfo, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy