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

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

package redis.clients.jedis.exceptions;

public class AbortedTransactionException extends JedisDataException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy