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

com.yomahub.liteflow.parser.redis.exception.RedisException Maven / Gradle / Ivy

package com.yomahub.liteflow.parser.redis.exception;

/**
 * Redis解析异常
 *
 * @author hxinyu
 * @since  2.11.0
 */

public class RedisException extends RuntimeException{

    private String message;

    public RedisException(String message) {
        super();
        this.message = message;
    }

    public RedisException(Throwable cause) {
        super(cause);
        this.message = cause.getMessage();
    }

    @Override
    public String getMessage() {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy