4211d6e403
It is disabled if the service is unavailable and displays information about how to enable it if it is unavailable. references QubesOS/qubes-issues#5298
39 lines
577 B
Python
39 lines
577 B
Python
### mock qubesadmin.exc module
|
|
# pylint: disable=unused-variable
|
|
|
|
|
|
class QubesException(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesVMNotStartedError(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesPropertyAccessError(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesDaemonAccessError(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesNoSuchPropertyError(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesDaemonNoResponseError(BaseException):
|
|
pass
|
|
|
|
|
|
class BackupCancelledError(BaseException):
|
|
pass
|
|
|
|
|
|
class BackupAlreadyRunningError(BaseException):
|
|
pass
|
|
|
|
|
|
class QubesDaemonCommunicationError(BaseException):
|
|
pass
|