You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
379 B
19 lines
379 B
package com.ruoyi.common.exception.file; |
|
|
|
import com.ruoyi.common.exception.BaseException; |
|
|
|
/** |
|
* 文件信息异常类 |
|
* |
|
* @author ruoyi |
|
*/ |
|
public class FileException extends BaseException |
|
{ |
|
private static final long serialVersionUID = 1L; |
|
|
|
public FileException(String code, Object[] args) |
|
{ |
|
super("file", code, args, null); |
|
} |
|
|
|
}
|
|
|