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

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

Go to download

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

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

/**
 * @author duanxinyuan
 * 2020/4/18 16:59
 */
public class UnsupportedCommandException extends RuntimeException {

    public UnsupportedCommandException() {
        super();
    }

    public UnsupportedCommandException(String message) {
        super("the command '" + message + "' is not supported");
    }

    public UnsupportedCommandException(String message, Throwable cause) {
        super("the command '" + message + "' is not supported", cause);
    }

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

    protected UnsupportedCommandException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super("the command '" + message + "' is not supported", cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy