Helius
2020-12-21 533828a0ac4d112055f0fb2613e4c0a318918a9e
1
2
3
4
5
6
7
8
9
10
11
package com.matrix.component.dingding;
 
public class OApiResultException extends OApiException {
 
    public static final int ERR_RESULT_RESOLUTION = -2;
    
    public OApiResultException(String field) {
        super(ERR_RESULT_RESOLUTION, "Cannot resolve field " + field + " from oapi resonpse");
    }
 
}