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