Source code for czbenchmarks.exceptions
[docs]
class CZBenchmarksException(Exception):
"""base class for all exceptions in the czbenchmarks package"""
pass
[docs]
class RemoteStorageError(CZBenchmarksException):
"""errors having to do with remote storage"""
pass
[docs]
class RemoteStorageObjectAlreadyExists(RemoteStorageError):
"""error when trying to overwrite an already existing object in remote storage"""
pass