fengxiang
2018-07-12 6d1509ab9e5aa911a6a2cdc2ab5a0887210f0b41
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);
    }
}