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

com.lambdaworks.redis.RedisException Maven / Gradle / Ivy

There is a newer version: 3.40.2
Show newest version
// 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