dashboard
repositories
filestore
activity
search
login
admin
/
screen_api_v2
工业级后台API v2
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
大屏 接口
xufenglei
2017-11-27
5bb340081d5b584000e4a932a959233077293b4c
[~admin/screen_api_v2.git]
/
src
/
main
/
java
/
com
/
moral
/
util
/
BusinessException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.moral.util;
public class BusinessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public BusinessException(String msg) {
super(msg);
}
}