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

redis.clients.jedis.exceptions.JedisClusterException Maven / Gradle / Ivy

package redis.clients.jedis.exceptions;

public class JedisClusterException extends JedisDataException {
  private static final long serialVersionUID = 3878126572474819403L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy