top.netkit.redis.client.executor.RedisConfigException Maven / Gradle / Ivy
The newest version!
package top.netkit.redis.client.executor;
/**
* redis lock exception
* @author shixinke
*/
public class RedisConfigException extends RuntimeException {
/**
* redis constructor
*/
public RedisConfigException() {
super();
}
/**
* redis constructor
* @param message exception message
*/
public RedisConfigException(String message) {
super(message);
}
/**
* redis constructor
* @param message exception message
* @param cause exception
*/
public RedisConfigException(String message, Throwable cause) {
super(message, cause);
}
/** Constructs a new runtime exception with the specified cause and a
*/
public RedisConfigException(Throwable cause) {
super(cause);
}
/**
* Constructs a new runtime exception with the specified detail
* message, cause, suppression enabled or disabled, and writable
* stack trace enabled or disabled.
*
* @param message the detail message.
* @param cause the cause. (A {@code null} value is permitted,
* and indicates that the cause is nonexistent or unknown.)
* @param enableSuppression whether or not suppression is enabled
* or disabled
* @param writableStackTrace whether or not the stack trace should
* be writable
*
* @since 1.7
*/
protected RedisConfigException(String message, Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy