中国算力平台算力登记系统2.0
yanzhaofeige
6 days ago 346e19ed91e10ac14722fcc29dbb810b9d971d3d
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 }