package com.ots.common.exception.user;
|
|
public class UserPasswordRetryLimitCountException extends UserException {
|
private static final long serialVersionUID = 1L;
|
public UserPasswordRetryLimitCountException(int retryLimitCount) {
|
super("user.password.retry.limit.count", new Object[]{retryLimitCount});
|
}
|
}
|