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

cn.novelweb.tool.upload.fastdfs.exception.FastDfsIoException Maven / Gradle / Ivy

package cn.novelweb.tool.upload.fastdfs.exception;

/**
 * 

非FastDFS本身的错误码抛出的异常,而是java客户端向服务端发送命令、文件或从服务端读取结果、下载文件时发生io异常

*

2020-02-03 16:19

* * @author LiZW **/ public class FastDfsIoException extends FastDfsException { public FastDfsIoException(Throwable cause) { super("客户端连接服务端出现了io异常", cause); } public FastDfsIoException(String message, Throwable cause) { super("客户端连接服务端出现了io异常:" + message, cause); } public FastDfsIoException(String message) { super(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy