Sign in

nx / creditNx · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • creditNx
  • ..
  • user
  • UserNotExistsException.java
  • 支持登录IP黑名单限制
    1268637e
    RuoYi authored
    2023-02-21 09:00:44 +0800  
    Browse Dir »
UserNotExistsException.java 303 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.ruoyi.common.exception.user;

/**
 * 用户不存在异常类
 * 
 * @author ruoyi
 */
public class UserNotExistsException extends UserException
{
    private static final long serialVersionUID = 1L;

    public UserNotExistsException()
    {
        super("user.not.exists", null);
    }
}