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

top.lshaci.framework.file.exception.FileOperateException Maven / Gradle / Ivy

The newest version!
package top.lshaci.framework.file.exception;

import top.lshaci.framework.common.constants.ErrorInfo;
import top.lshaci.framework.common.exception.BaseException;

/**
 * FileOperateException
 *
 * @author lshaci
 * @since 1.0.9
 */
public class FileOperateException extends BaseException {

    /**
     * 根据异常码和错误信息创建一个文件操作异常
     *
     * @param errorInfo 异常信息
     * @param args      消息参数
     */
    public FileOperateException(ErrorInfo errorInfo, Object... args) {
        super(errorInfo, args);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy