[测评系统]--测评系统核心代码库
linzhijie
2021-07-28 3d285bc2a61024e6e4fb805c13286243430e38e3
1
2
3
4
5
6
7
8
package com.ots.common.exception.user;
 
public class UserPasswordNotMatchException extends UserException {
    private static final long serialVersionUID = 1L;
    public UserPasswordNotMatchException() {
        super("user.password.not.match", null);
    }
}