pinecone.core.exceptions

1class PineconeException(Exception):
2    """The base exception class for all Pinecone client exceptions."""
3
4
5class PineconeProtocolError(PineconeException):
6    """Raised when something unexpected happens mid-request/response."""
class PineconeException(builtins.Exception):
2class PineconeException(Exception):
3    """The base exception class for all Pinecone client exceptions."""

The base exception class for all Pinecone client exceptions.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args
class PineconeProtocolError(PineconeException):
6class PineconeProtocolError(PineconeException):
7    """Raised when something unexpected happens mid-request/response."""

Raised when something unexpected happens mid-request/response.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
add_note
args