工业互联网平台2.0版本后端代码
Jay
2025-05-26 f88c4b733831325c57ed3fd9fd7c5f0a95e12fa5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.iailab.module.model.matlab.common.exceptions;
 
/**
 * @description: 非法jar包异常
 * @author: dzd
 * @date: 2025/2/26 17:52
 **/
public class IllegalityJarException extends Exception {
    private Throwable cause;
 
    public IllegalityJarException() {
    }
 
    public IllegalityJarException(String msg) {
        super(msg);
    }
 
    public IllegalityJarException(String msg, Exception cause) {
        super(msg, cause);
        this.cause = cause;
    }
}