ignore文件

This commit is contained in:
JinLu.Yin
2022-05-06 16:45:41 +08:00
parent 13c2a6bd40
commit e2cfc00ac5
350 changed files with 41884 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.ktg.common.exception.user;
/**
* 验证码错误异常类
*
* @author ktg
*/
public class CaptchaException extends UserException
{
private static final long serialVersionUID = 1L;
public CaptchaException()
{
super("user.jcaptcha.error", null);
}
}

View File

@@ -0,0 +1,16 @@
package com.ktg.common.exception.user;
/**
* 验证码失效异常类
*
* @author ktg
*/
public class CaptchaExpireException extends UserException
{
private static final long serialVersionUID = 1L;
public CaptchaExpireException()
{
super("user.jcaptcha.expire", null);
}
}

View File

@@ -0,0 +1,18 @@
package com.ktg.common.exception.user;
import com.ktg.common.exception.base.BaseException;
/**
* 用户信息异常类
*
* @author ruoyi
*/
public class UserException extends BaseException
{
private static final long serialVersionUID = 1L;
public UserException(String code, Object[] args)
{
super("user", code, args, null);
}
}

View File

@@ -0,0 +1,16 @@
package com.ktg.common.exception.user;
/**
* 用户密码不正确或不符合规范异常类
*
* @author ktg
*/
public class UserPasswordNotMatchException extends UserException
{
private static final long serialVersionUID = 1L;
public UserPasswordNotMatchException()
{
super("user.password.not.match", null);
}
}