fix
Helius
2022-03-30 314e52b563abe9bc6abfe9f46535353c4adc283e
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);
    }
}