cn.novelweb.tool.upload.fastdfs.exception.FastDfsException Maven / Gradle / Ivy
package cn.novelweb.tool.upload.fastdfs.exception;
/**
* FastDFS客户端异常 基类
* 2020-02-03 16:18
*
* @author LiZW
**/
public class FastDfsException extends RuntimeException {
public FastDfsException(String message) {
super(message);
}
public FastDfsException(String message, Throwable cause) {
super(message, cause);
}
}