From 17e6bf00baabe47c0a8847ed28f488917d343727 Mon Sep 17 00:00:00 2001 From: 3hhh Date: Sun, 11 Apr 2021 09:02:40 +0200 Subject: [PATCH] mock QubesVMNotFoundError --- test-packages/qubesadmin/exc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test-packages/qubesadmin/exc.py b/test-packages/qubesadmin/exc.py index 023ba21..3454ed8 100644 --- a/test-packages/qubesadmin/exc.py +++ b/test-packages/qubesadmin/exc.py @@ -6,6 +6,10 @@ class QubesException(BaseException): pass +class QubesVMNotFoundError(BaseException): + pass + + class QubesVMNotStartedError(BaseException): pass