中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 1d25094b9f0e339d784e6f1b17c95c88c272dd45
commit | author | age
43dc29 1 package com.odcc.cpzidc.common.exception.user;
Y 2
3 /**
4  * 用户错误最大次数异常类
5  * 
6  * @author ruoyi
7  */
8 public class UserPasswordRetryLimitExceedException extends UserException
9 {
10     private static final long serialVersionUID = 1L;
11
12     public UserPasswordRetryLimitExceedException(int retryLimitCount, int lockTime)
13     {
14         super("user.password.retry.limit.exceed", new Object[] { retryLimitCount, lockTime });
15     }
16 }