Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions qubesadmin/exc.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,14 @@ def __init__(self, msg, backup_log=None):
self.backup_log = backup_log


class SignatureVerificationError(Exception):
"""Package signature is invalid or missing"""


class AlreadyRunning(Exception):
"""Another qvm-template is already running"""


# pylint: disable=too-many-ancestors
class QubesDaemonAccessError(QubesDaemonCommunicationError):
"""Got empty response from qubesd. This can be lack of permission,
Expand Down
Loading