-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(object_storage): improved the error handlings
- Loading branch information
Showing
3 changed files
with
76 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
class BuildtimeError(Exception): | ||
pass | ||
class DamavandException(Exception): | ||
fmt = "An unknown error occurred." | ||
|
||
def __init__(self, **kwargs: str) -> None: | ||
msg = self.fmt.format(**kwargs) | ||
super().__init__(msg) | ||
|
||
|
||
# Buildtime exceptions | ||
class BuildtimeException(DamavandException): | ||
fmt = "An unknown error occurred during buildtime." | ||
|
||
|
||
class CallResourceBeforeProvision(BuildtimeException): | ||
fmt = "Resource called before provision. Call `provision` method first." | ||
|
||
|
||
# Runtime exceptions | ||
class RuntimeException(DamavandException): | ||
fmt = "An unknown error occurred happend during runtime." | ||
|
||
|
||
class ResourceAccessDenied(RuntimeException): | ||
fmt = "Access to resource `{name}` is denied." | ||
|
||
|
||
class ObjectNotFound(RuntimeException): | ||
fmt = "Object `{name}` not found in the storage." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters