com.github.tobato.fastdfs.exception.FdfsConnectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
package com.github.tobato.fastdfs.exception;
/**
* 非fastdfs本身的错误码抛出的异常,socket连不上时抛出的异常
*
* @author yuqihuang
* @author tobato
*
*/
public class FdfsConnectException extends FdfsUnavailableException {
/**
* serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
* @param message
*/
public FdfsConnectException(String message, Throwable t) {
super(message, t);
}
}