Mr.Zhang
2023-09-06 c9a0e7808723c7a2534f07de2cfd35d1c9f2758a
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("不安全的会话");
    }
}