zhongrj
2024-01-09 ebb4cec607db24427690499d0d98e607536461e7
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);
    }
 
}