Helius
2021-03-23 0e0c0cc432c12b57600d57af3ff58cb6bf61611f
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);
    }
}