提交 | 用户 | 时间 | ||
3e61b6 | 1 | package com.iailab.module.model.matlab.common.exceptions; |
D | 2 | |
3 | /** | |
4 | * @description: 非法jar包异常 | |
5 | * @author: dzd | |
6 | * @date: 2025/2/26 17:52 | |
7 | **/ | |
8 | public class IllegalityJarException extends Exception { | |
9 | private Throwable cause; | |
10 | ||
11 | public IllegalityJarException() { | |
12 | } | |
13 | ||
14 | public IllegalityJarException(String msg) { | |
15 | super(msg); | |
16 | } | |
17 | ||
18 | public IllegalityJarException(String msg, Exception cause) { | |
19 | super(msg, cause); | |
20 | this.cause = cause; | |
21 | } | |
22 | } |