com.github.tobato.fastdfs.exception.FdfsUploadImageException 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;
/**
* 上传图片例外
*
* @author tobato
*
*/
public class FdfsUploadImageException extends FdfsException {
/**
* serialVersionUID
*/
private static final long serialVersionUID = 1L;
protected FdfsUploadImageException(String message) {
super(message);
}
public FdfsUploadImageException(String message, Throwable cause) {
super(message, cause);
}
}