Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/exceptions.py
blob: 5a5d47c6f4233d8ac909cea2646614ff93b5bea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class RequirementError(BaseException):
	pass
class DiskError(BaseException):
	pass
class UnknownFilesystemFormat(BaseException):
	pass
class ProfileError(BaseException):
	pass
class SysCallError(BaseException):
	pass
class ProfileNotFound(BaseException):
	pass
class HardwareIncompatibilityError(BaseException):
	pass
class PermissionError(BaseException):
	pass
class UserError(BaseException):
	pass