liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mdk.common.exceptions;
2
3 public class ArrayLengthMisMatchException extends Exception {
4     public final String arrayLengthMisMatch = "数组维数不匹配";
5
6     private Throwable cause;
7
8     public ArrayLengthMisMatchException() {
9     }
10
11     public ArrayLengthMisMatchException(String msg) {
12         super(msg);
13     }
14
15     public ArrayLengthMisMatchException(String msg, Exception cause) {
16         super(msg);
17         this.cause = cause;
18     }
19 }