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

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

package redis.clients.jedis.exceptions;

/**
 * @deprecated This exception will be removed in next major release. Use
 * {@link JedisClusterOperationException}.
 */
@Deprecated
public class JedisClusterMaxAttemptsException extends JedisClusterOperationException {
  private static final long serialVersionUID = 167600616259092761L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy