xufenglei
2018-03-16 383b8f39d81e89c3d29cb1a59d6b124dc26bcc57
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);
    }
}