manager/test-packages/qubesadmin/exc.py
Marta Marczykowska-Górecka 4211d6e403
shutdown-when-idle gets its own checkbox in VM settings
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
2020-09-22 14:09:51 +02:00

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