luoyb
2021-01-31 d9a1c41b0adb5ca2263348e1cc4e8b7bbdafc35d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.common.core.exception;
 
/**
 * 验证码类型异常
 *
 * @author MrBird
 */
public class ValidateCodeException extends Exception {
 
    private static final long serialVersionUID = 7514854456967620043L;
 
    public ValidateCodeException(String message) {
        super(message);
    }
}