| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- """RDF4J exceptions."""
- class RDF4JError(Exception):
- """Base class for RDF4J exceptions."""
- class RepositoryError(RDF4JError):
- """Raised when interactions on a repository result in an error."""
- class RepositoryResponseFormatError(RepositoryError):
- """Raised when the repository response format is invalid."""
- class RepositoryNotFoundError(RepositoryError):
- """Raised when the repository is not found."""
- class RepositoryNotHealthyError(RepositoryError):
- """Raised when the repository is not healthy."""
- class RepositoryAlreadyExistsError(RepositoryError):
- """Raised when the repository already exists."""
- class RDF4JUnsupportedProtocolError(RDF4JError):
- """Raised when the server does not support the protocol version."""
- class RDFLibParserError(RDF4JError):
- """Raised when there is an error parsing the RDF document."""
- class RepositoryTransactionError(RDF4JError):
- """Raised when there is an error with the transaction."""
- class TransactionClosedError(RepositoryTransactionError):
- """Raised when the transaction has been closed."""
- class TransactionPingError(RepositoryTransactionError):
- """Raised when there is an error pinging the transaction."""
- class TransactionCommitError(RepositoryTransactionError):
- """Raised when there is an error committing the transaction."""
- class TransactionRollbackError(RepositoryTransactionError):
- """Raised when there is an error rolling back the transaction."""
|