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

com.github.houbb.redis.client.api.exception.RedisClientRuntimeException Maven / Gradle / Ivy

The newest version!
package com.github.houbb.redis.client.api.exception;

/**
 * @author binbin.hou
 * @since 0.0.1
 */
public class RedisClientRuntimeException extends RuntimeException {

    public RedisClientRuntimeException() {
    }

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

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

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

    public RedisClientRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy