dongyukun
7 天以前 d79c5f396b23520e6370e9d9b6abc31938a0e83f
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 ErrorCalculateFailedException extends Exception {
    public final String errorrCalculate = "误差计算失败";
 
    private Throwable cause;
 
    public ErrorCalculateFailedException() {
    }
 
    public ErrorCalculateFailedException(String msg) {
        super(msg);
    }
 
    public ErrorCalculateFailedException(String msg, Exception cause) {
        super(msg, cause);
        this.cause = cause;
    }
}