dashboard
repositories
filestore
activity
search
login
main
/
task
工业级运维app手机api
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
警报值 更新
xufenglei
2017-11-06
3f28569194b49383d0ab39620de344fb42ccab3f
[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);
}
}