io.pinecone.PineconeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinecone-client Show documentation
Show all versions of pinecone-client Show documentation
The Pinecone.io Java Client
package io.pinecone;
public class PineconeException extends RuntimeException {
public PineconeException(String message) {
super(message);
}
public PineconeException(String message, Throwable cause) {
super(message, cause);
}
}