17 lines
321 B
Plaintext
17 lines
321 B
Plaintext
|
|
package com.securityControl.common.core.exception.user;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 验证码失效异常类
|
||
|
|
*
|
||
|
|
* @author czc
|
||
|
|
*/
|
||
|
|
public class CaptchaExpireException extends UserException
|
||
|
|
{
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
public CaptchaExpireException()
|
||
|
|
{
|
||
|
|
super("user.jcaptcha.expire", null);
|
||
|
|
}
|
||
|
|
}
|