jiangping
2023-08-18 6ad10e278e9193bd65314a2f3c954ab16e8c104f
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("不安全的会话");
    }
}