forked from p15670423/monkey
Island: Remove superfluous "pass" from repository.errors
This commit is contained in:
parent
1de552ea94
commit
6b083ca61b
|
@ -3,24 +3,18 @@ class RemovalError(RuntimeError):
|
||||||
Raised when a repository encounters an error while attempting to remove data.
|
Raised when a repository encounters an error while attempting to remove data.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class RetrievalError(RuntimeError):
|
class RetrievalError(RuntimeError):
|
||||||
"""
|
"""
|
||||||
Raised when a repository encounters an error while attempting to retrieve data.
|
Raised when a repository encounters an error while attempting to retrieve data.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class StorageError(RuntimeError):
|
class StorageError(RuntimeError):
|
||||||
"""
|
"""
|
||||||
Raised when a repository encounters an error while attempting to store data.
|
Raised when a repository encounters an error while attempting to store data.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class UnknownRecordError(RuntimeError):
|
class UnknownRecordError(RuntimeError):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue