FileNotExistException.java 316 Bytes
package com.lhcredit.common.exception.file;

/**
 * 文件不存在异常类
 * LGJ
 */
public class FileNotExistException extends FileException {
    private static final long serialVersionUID = 1L;

    public FileNotExistException(String fileUrl) {
        super("file.not.exist", new Object[]{fileUrl});
    }
}