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

redis.server.netty.RedisException Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package redis.server.netty;

/**
 * Server exception
 */
public class RedisException extends Exception {
  public RedisException() {
    super();
  }

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

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

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

  protected RedisException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy