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

com.lambdaworks.redis.RedisMovedException Maven / Gradle / Ivy

There is a newer version: 3.43.0
Show newest version
package com.lambdaworks.redis;

public class RedisMovedException extends RedisException {

    private static final long serialVersionUID = -6969734163155547631L;

    private int slot;

    public RedisMovedException(int slot) {
        this.slot = slot;
    }

    public int getSlot() {
        return slot;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy