公告板
版本库
filestore
活动
搜索
登录
main
/
TAI_OTS_FRAMEWORK
[测评系统]--测评系统核心代码库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
测评系统核心代码
linzhijie
2021-03-11
84fea994d2db7dc313ad1774f34eb12a45f8d6e7
[TAI_OTS_FRAMEWORK.git]
/
src
/
main
/
java
/
com
/
ots
/
common
/
exception
/
user
/
UserPasswordNotMatchException.java
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);
}
}