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

org.craft.atom.redis.api.RedisConnectionException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.craft.atom.redis.api;

/**
 * @author mindwind
 * @version 1.0, Jun 18, 2013
 */
public class RedisConnectionException extends RedisException {
	
    private static final long serialVersionUID = 3878126572474819403L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy