All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.client.exception.InitializationException Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
package io.milvus.client.exception;

public class InitializationException extends MilvusException {
  private String host;
  private Throwable cause;

  public InitializationException(String host, Throwable cause) {
    super(false, cause);
    this.host = host;
  }

  public InitializationException(String host, String message) {
    super(false, message);
    this.host = host;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy