dengzedong
2024-12-24 28c2db9d5ede90b0670446344084eb6169b6c65e
提交 | 用户 | 时间
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 }