diff --git a/protect_archiver/errors.py b/protect_archiver/errors.py index e19cac6..2191ce7 100644 --- a/protect_archiver/errors.py +++ b/protect_archiver/errors.py @@ -2,15 +2,12 @@ class Errors: def __init__(self) -> None: pass - @Exception class ProtectError(Exception): def __init__(self, code: int) -> None: self.code = code - @Exception class DownloadFailed(Exception): pass - @Exception class AuthorizationFailed(Exception): pass