jiangping
2025-03-31 57f48c615a59f20d2333b8e9a9b1f1a7e6cb4ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.doumee.core.exception;
 
/**
 * 数据已被锁定异常
 * @author Eva.Caesar Liu
 * @since 2025/03/31 16:44
 */
public class LockedException extends Exception {
 
    public LockedException(String message) {
        super(message);
    }
}