中国算力平台算力登记系统2.0
yanzhaofeige
2024-09-30 3c4fee1db116c11d4f04727cfe076d7c94daeaf2
commit | author | age
43dc29 1 package com.odcc.cpzidc.common.exception.file;
Y 2
3 import com.odcc.cpzidc.common.exception.base.BaseException;
4
5 /**
6  * 文件信息异常类
7  * 
8  * @author ruoyi
9  */
10 public class FileException extends BaseException
11 {
12     private static final long serialVersionUID = 1L;
13
14     public FileException(String code, Object[] args)
15     {
16         super("file", code, args, null);
17     }
18
19 }