1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.autoform.fw.exception;
|
| import cn.autoform.fw.utility.ConstMap;
|
| public class LoginException extends RuntimeException {
|
| /**
| *
| */
| private static final long serialVersionUID = 1L;
| private String code;
|
| private String name;
|
| @Override
| public String getMessage() {
| return ConstMap.LOGIN_OUT;
| }
| }
|
|