package com.kidgrow.oauth2.exception;
|
|
import org.springframework.security.core.AuthenticationException;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @Description: <br>
|
* @Project: <br>
|
* @CreateDate: Created in 2020/2/20 09:36 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
public class ValidateCodeException extends AuthenticationException {
|
private static final long serialVersionUID = -7285211528095468156L;
|
|
public ValidateCodeException(String msg) {
|
super(msg);
|
}
|
}
|