io.pinecone.exceptions.PineconeAuthorizationException 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.exceptions;
public class PineconeAuthorizationException extends PineconeException {
public PineconeAuthorizationException(String message) {
super(message);
}
public PineconeAuthorizationException(String message, Throwable cause) {
super(message, cause);
}
}