中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 3ef6abbd7a73bd464bfb24fd99f7f9956f2562ef
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 }