com.lambdaworks.redis.RedisConnectionException 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
package com.lambdaworks.redis;
public class RedisConnectionException extends RedisException {
private static final long serialVersionUID = 4007817232147176510L;
public RedisConnectionException(String msg) {
super(msg);
}
public RedisConnectionException(String msg, Throwable e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy