RedisHandleException.java 369 Bytes
Newer Older
竹天卫's avatar
竹天卫 committed
1
package cn.wise.im.common.exception;
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

/**
 * redis 操作异常
 */
public class RedisHandleException extends RuntimeException {

	public RedisHandleException(String msg) {
		super(msg);
	}

	public RedisHandleException(String message, Throwable throwable) {
		super(message, throwable);
	}

	public RedisHandleException(Throwable throwable) {
		super(throwable);
	}
}