疯狂的狮子li
2022-03-03 a54cb7d3e48cdf3adf7e998dc9c91dab4eb4def6
ruoyi-common/src/main/java/com/ruoyi/common/exception/user/UserPasswordNotMatchException.java
@@ -2,15 +2,13 @@
/**
 * 用户密码不正确或不符合规范异常类
 *
 *
 * @author ruoyi
 */
public class UserPasswordNotMatchException extends UserException
{
public class UserPasswordNotMatchException extends UserException {
    private static final long serialVersionUID = 1L;
    public UserPasswordNotMatchException()
    {
        super("user.password.not.match", null);
    public UserPasswordNotMatchException() {
        super("user.password.not.match");
    }
}