[测评系统]--测评系统核心代码库
林致杰
2022-07-25 a4d957be987b9e0240323499e0440b773bf2a5f3
1
2
3
4
5
6
7
8
package com.ots.common.exception.user;
 
public class UserPasswordRetryLimitExceedException extends UserException {
    private static final long serialVersionUID = 1L;
    public UserPasswordRetryLimitExceedException(int retryLimitCount) {
        super("user.password.retry.limit.exceed", new Object[]{retryLimitCount});
    }
}