From 1c99cfafcfcd5ef2164250b5cb1755c1573eb928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 13 Jun 2018 16:17:20 +0200 Subject: [PATCH] travis: Add QubesPropertyAccessError exception mockup --- test-packages/qubesadmin/exc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test-packages/qubesadmin/exc.py b/test-packages/qubesadmin/exc.py index 90b4d3c..a15b6e8 100644 --- a/test-packages/qubesadmin/exc.py +++ b/test-packages/qubesadmin/exc.py @@ -6,4 +6,7 @@ class QubesException(BaseException): pass class QubesVMNotStartedError(BaseException): - pass \ No newline at end of file + pass + +class QubesPropertyAccessError(BaseException): + pass