xufenglei
2018-07-20 00dabe413d23e8bc03e2f5cf884a4f25f1c9bc49
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);
    }
}