提交 | 用户 | 时间 | ||
722af2 | 1 | package com.dl.common.exception.user; |
X | 2 | |
3 | /** | |
4 | * 验证码失效异常类 | |
5 | * | |
6 | * @author dl | |
7 | */ | |
8 | public class CaptchaExpireException extends UserException { | |
9 | private static final long serialVersionUID = 1L; | |
10 | ||
11 | public CaptchaExpireException() { | |
12 | super("user.jcaptcha.expire"); | |
13 | } | |
14 | } |