Island: Remove superfluous "pass" from repository.errors

This commit is contained in:
Mike Salvatore 2022-08-29 15:15:49 -04:00
parent 1de552ea94
commit 6b083ca61b
1 changed files with 0 additions and 6 deletions

View File

@ -3,24 +3,18 @@ class RemovalError(RuntimeError):
Raised when a repository encounters an error while attempting to remove data.
"""
pass
class RetrievalError(RuntimeError):
"""
Raised when a repository encounters an error while attempting to retrieve data.
"""
pass
class StorageError(RuntimeError):
"""
Raised when a repository encounters an error while attempting to store data.
"""
pass
class UnknownRecordError(RuntimeError):
"""