package com.xiaoleilu.hutool.io.watch; import com.xiaoleilu.hutool.exceptions.ExceptionUtil; import com.xiaoleilu.hutool.util.StrUtil; /** * 监听异常 * @author Looly * */ public class WatchException extends RuntimeException { private static final long serialVersionUID = 8068509879445395353L; public WatchException(Throwable e) { super(ExceptionUtil.getMessage(e), e); } public WatchException(String message) { super(message); } public WatchException(String messageTemplate, Object... params) { super(StrUtil.format(messageTemplate, params)); } public WatchException(String message, Throwable throwable) { super(message, throwable); } public WatchException(Throwable throwable, String messageTemplate, Object... params) { super(StrUtil.format(messageTemplate, params), throwable); } }