21 lines
386 B
Java
21 lines
386 B
Java
![]() |
package com.ruoyi.common.exception.user;
|
||
|
|
||
|
import com.ruoyi.common.exception.base.BaseException;
|
||
|
|
||
|
/**
|
||
|
* 用户信息异常类
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
*/
|
||
|
public class UserException extends BaseException
|
||
|
{
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
public UserException(String code, Object[] args)
|
||
|
{
|
||
|
super("user", code, args, null);
|
||
|
}
|
||
|
|
||
|
}
|