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

com.dxy.library.cache.redis.exception.RedisCacheException Maven / Gradle / Ivy

Go to download

Redis缓存库,支持single/sentinel/sharded/cluster四种集群方式,支持布隆过滤器,支持分布式锁

The newest version!
package com.dxy.library.cache.redis.exception;

/**
 * @author duanxinyuan
 * 2019/2/26 23:45
 */
public class RedisCacheException extends RuntimeException {

    public RedisCacheException() {
        super();
    }

    public RedisCacheException(String message) {
        super(message);
    }

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

    public RedisCacheException(Throwable cause) {
        super(cause);
    }

    protected RedisCacheException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy