Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/exceptions.py
diff options
context:
space:
mode:
authorDaniel Girtler <blackrabbit256@gmail.com>2023-05-12 02:30:09 +1000
committerGitHub <noreply@github.com>2023-05-11 18:30:09 +0200
commit89cefb9a1c7d4c4968e7d8645149078e601c9d1c (patch)
tree12c84bdcef1b0ef3f8a21977e25c7f0f89388138 /archinstall/lib/exceptions.py
parent6e6b850a8f687b193172aaa321d49bd2956c1d4f (diff)
Cleanup imports and unused code (#1801)
* Cleanup imports and unused code * Update build check * Keep deprecation exception * Simplify logging --------- Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
Diffstat (limited to 'archinstall/lib/exceptions.py')
-rw-r--r--archinstall/lib/exceptions.py23
1 files changed, 2 insertions, 21 deletions
diff --git a/archinstall/lib/exceptions.py b/archinstall/lib/exceptions.py
index a66e4e04..53458d2c 100644
--- a/archinstall/lib/exceptions.py
+++ b/archinstall/lib/exceptions.py
@@ -3,6 +3,7 @@ from typing import Optional, TYPE_CHECKING
if TYPE_CHECKING:
from .general import SysCommandWorker
+
class RequirementError(BaseException):
pass
@@ -15,10 +16,6 @@ class UnknownFilesystemFormat(BaseException):
pass
-class ProfileError(BaseException):
- pass
-
-
class SysCallError(BaseException):
def __init__(self, message :str, exit_code :Optional[int] = None, worker :Optional['SysCommandWorker'] = None) -> None:
super(SysCallError, self).__init__(message)
@@ -27,22 +24,10 @@ class SysCallError(BaseException):
self.worker = worker
-class PermissionError(BaseException):
- pass
-
-
-class ProfileNotFound(BaseException):
- pass
-
-
class HardwareIncompatibilityError(BaseException):
pass
-class UserError(BaseException):
- pass
-
-
class ServiceException(BaseException):
pass
@@ -51,9 +36,5 @@ class PackageError(BaseException):
pass
-class TranslationError(BaseException):
- pass
-
-
class Deprecated(BaseException):
- pass \ No newline at end of file
+ pass