dashboard
repositories
filestore
activity
search
login
main
/
jczz_xxl_job_admin
xxljob-admin 管理后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
first commit
zhongrj
2024-01-09
ebb4cec607db24427690499d0d98e607536461e7
[jczz_xxl_job_admin.git]
/
xxl-job-admin
/
src
/
main
/
java
/
com
/
xxl
/
job
/
admin
/
core
/
exception
/
XxlJobException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xxl.job.admin.core.exception;
/**
* @author liyh
*/
public class XxlJobException extends RuntimeException {
public XxlJobException() {
}
public XxlJobException(String message) {
super(message);
}
}