com.larksuite.oapi.core.api.ReqCallResult Maven / Gradle / Ivy
package com.larksuite.oapi.core.api;
import com.larksuite.oapi.core.api.response.Response;
public class ReqCallResult {
private final ReqCaller reqCaller;
private final Response response;
private final Exception exception;
public ReqCallResult(ReqCaller reqCaller) {
this.reqCaller = reqCaller;
this.response = reqCaller.getResponse();
this.exception = reqCaller.getException();
}
public ReqCaller getReqCaller() {
return reqCaller;
}
public Response getResponse() {
return response;
}
public Exception getException() {
return exception;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy