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

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

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

/**
 * 封装fastdfs的异常,使用运行时异常
 *
 * @author yuqih
 * @author tobato
 */
public abstract class FastDFSException extends RuntimeException {

    protected FastDFSException(String message) {
        super(message);
    }

    protected FastDFSException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy