fix
Helius
2021-07-20 12bdaf99a9abf9e3930b449c65dd427c861b0ca4
1
2
3
4
5
6
7
8
package com.matrix.component.dingding;
 
public class OApiException extends Exception {
 
    public OApiException(int errCode, String errMsg) {
        super("error code: " + errCode + ", error message: " + errMsg);
    }
}