in src/main/java/org/apache/skywalking/banyandb/v1/client/grpc/HandleExceptionsWith.java [43:49]
public static <RESP, E extends BanyanDBException> RESP callAndTranslateApiException(SupplierWithIO<RESP, E> respSupplier) throws BanyanDBException {
try {
return respSupplier.get();
} catch (Exception exception) {
throw EXCEPTION_FACTORY.createException(exception);
}
}