in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [299:305]
private <T extends NCStatusResponseBean> T checkAndExtract(String js, Type type) throws NCClientException {
T t = gson.fromJson(js, type);
checkStatus(t.getStatus());
return t;
}