czbenchmarks.exceptions
Exceptions
Base class for all exceptions in the czbenchmarks package. |
|
Exception raised for errors related to remote storage. |
|
Exception raised when attempting to overwrite an existing object in remote storage. |
Module Contents
- exception czbenchmarks.exceptions.CZBenchmarksException[source]
Bases:
Exception
Base class for all exceptions in the czbenchmarks package.
This exception serves as the root for all custom exceptions defined in the czbenchmarks package, allowing for consistent error handling.
Initialize self. See help(type(self)) for accurate signature.
- exception czbenchmarks.exceptions.RemoteStorageError[source]
Bases:
CZBenchmarksException
Exception raised for errors related to remote storage.
This exception is used to indicate issues such as connectivity problems, invalid configurations, or other failures when interacting with remote storage.
Initialize self. See help(type(self)) for accurate signature.
- exception czbenchmarks.exceptions.RemoteStorageObjectAlreadyExists[source]
Bases:
RemoteStorageError
Exception raised when attempting to overwrite an existing object in remote storage.
This exception is triggered when a remote storage operation fails due to the target object already existing and overwriting is not permitted.
Initialize self. See help(type(self)) for accurate signature.