tech.amikos.chromadb.EFException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chromadb-java-client Show documentation
Show all versions of chromadb-java-client Show documentation
Chroma Vector DB Java Client
package tech.amikos.chromadb;
/**
* This exception encapsulates all exceptions thrown by the EmbeddingFunction class.
*/
public class EFException extends ChromaException {
public EFException(String message) {
super(message);
}
public EFException(String message, Throwable cause) {
super(message, cause);
}
public EFException(Throwable cause) {
super(cause);
}
}