com.lambdaworks.redis.RedisException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
// Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.redis;
/**
* Exception thrown when redis returns an error message, or when the client
* fails for any reason.
*
* @author Will Glozer
*/
@SuppressWarnings("serial")
public class RedisException extends RuntimeException {
public RedisException() {
}
public RedisException(String msg) {
super(msg);
}
public RedisException(String msg, Throwable e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy