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;
| }
| }
|
|