dashboard
repositories
filestore
activity
search
login
admin
/
screen_api_v2
工业级后台API v2
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改ftp服务器
沈斌
2018-05-04
1cc868492b79774b8103ce5589fbe6a2c7ad1fd9
[~admin/screen_api_v2.git]
/
src
/
main
/
java
/
com
/
moral
/
security
/
exceptions
/
AccountExpiredBadCredentialsException.java
1
2
3
4
5
6
7
8
9
package com.moral.security.exceptions;
import org.springframework.security.core.AuthenticationException;
public class AccountExpiredBadCredentialsException extends AuthenticationException {
public AccountExpiredBadCredentialsException(String msg) {
super(msg);
}
}