仪表盘
版本库
文件存储
活动
搜索
登录
productDev
/
lianhelihua_sh
联合利华(上海)
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://139.186.142.91:10010/r/productDev/lianhelih...
MrShi
2025-08-19
ff087240b3dee29ce4e14ad0836e76b9fdf312cf
[productDev/lianhelihua_sh.git]
/
server
/
src
/
main
/
java
/
com
/
doumee
/
core
/
exception
/
LockedException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.doumee.core.exception;
/**
* 数据已被锁定异常
* @author dm
* @since 2025/03/31 16:44
*/
public class LockedException extends Exception {
public LockedException(String message) {
super(message);
}
}