潘志宝
2025-03-23 45ccb96b7a3a9929e8beb6a2c5793eff6170b56d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.model.mdk.common.exceptions;
 
public class ArrayLengthMisMatchException extends Exception {
    public final String arrayLengthMisMatch = "数组维数不匹配";
 
    private Throwable cause;
 
    public ArrayLengthMisMatchException() {
    }
 
    public ArrayLengthMisMatchException(String msg) {
        super(msg);
    }
 
    public ArrayLengthMisMatchException(String msg, Exception cause) {
        super(msg);
        this.cause = cause;
    }
}