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

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

package redis.clients.jedis.exceptions;

/**
 * {@code -BUSY} reply from Redis.
 */
public class JedisBusyException extends JedisDataException {

  private static final long serialVersionUID = 3992655220229243478L;

  public JedisBusyException(final String message) {
    super(message);
  }

  public JedisBusyException(final Throwable cause) {
    super(cause);
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy