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

com.hn.upload.UploadException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.upload;

/**
 * 描述:
 * 上传异常
 *
 * @author fei
 *  2019-12-20 09:28
 */
public class UploadException extends RuntimeException {
    public UploadException() {
    }

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

    public UploadException(String message, Throwable cause) {
        super(message, cause);
    }

    public static UploadException exception(String message){
        return new UploadException(message);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy