Mr.Zhang
2023-08-24 221d9dfd1634d5fab98a686b0b8a83f6f1e088b5
1
2
3
4
5
6
7
8
9
10
11
12
package doumeemes.core.exception;
 
/**
 * 不安全的会话异常
 * @author Eva.Caesar Liu
 * @date 2022/04/18 18:12
 */
public class UnSafeSessionException extends RuntimeException {
    public UnSafeSessionException () {
        super("不安全的会话");
    }
}