forked from kidgrow-microservices-platform

zhaoxiaohao
2021-03-08 3cc66f911c6a7b0d55ddb58c67e16963195ea351
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
}