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

com.github.yingzhuo.fastdfs.springboot.exception.FastDFSUnavailableException Maven / Gradle / Ivy

The newest version!
package com.github.yingzhuo.fastdfs.springboot.exception;

/**
 * 非fastdfs本身的错误码抛出的异常,取服务端连接取不到时抛出的异常
 *
 * @author yuqihuang
 */
public class FastDFSUnavailableException extends FastDFSException {

    public FastDFSUnavailableException(String message) {
        super(message);
    }

    public FastDFSUnavailableException(String message, Throwable t) {
        super(message, t);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy