|
|
@@ -82,7 +82,7 @@ public class TsfAuthenticationProvider implements AuthenticationProvider {
|
|
|
|
|
|
if (loginInfo == null) {
|
|
|
log.info(String.format("Customer with ID=%s was not found!", loginId));
|
|
|
- throw new TsfUsernameNotFoundException(message.getMessage("LOGN_0001"));
|
|
|
+ throw new TsfUsernameNotFoundException(message.getMessage("LOGN_0010"));
|
|
|
}
|
|
|
|
|
|
// 로그인 실패누적건수가 5회 이상이면
|
|
|
@@ -97,7 +97,7 @@ public class TsfAuthenticationProvider implements AuthenticationProvider {
|
|
|
log.info("Password is match?: {}", isMatch);
|
|
|
|
|
|
if (!isMatch) {
|
|
|
- throw new BadCredentialsException(message.getMessage("LOGN_0002"));
|
|
|
+ throw new BadCredentialsException(message.getMessage("LOGN_0010"));
|
|
|
}
|
|
|
}
|
|
|
|