dashboard
repositories
filestore
activity
search
login
main
/
task
工业级运维app手机api
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
设备状态存储
fengxiang
2017-11-15
9f05f3d2055151bd172d252fa33a4868d171068b
[task.git]
/
src
/
main
/
java
/
com
/
moral
/
monitor
/
util
/
BusinessException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.moral.monitor.util;
public class BusinessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public BusinessException(String msg) {
super(msg);
}
}