dashboard
repositories
filestore
activity
search
login
main
/
task
工业级运维app手机api
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
test
沈斌
2017-11-07
f0aa3d758d72891edb08f8e3ac14ffcd95fbb30c
[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);
}
}