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