io.milvus.client.exception.InitializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
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;
}
}