dashboard
repositories
filestore
activity
search
login
main
/
task
工业级运维app手机api
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
增加 参数空值校验
xufenglei
2017-10-30
fa525b45b0a3f4e524462dceb409c30909c5be72
[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);
}
}