From 1fd09f4e58df28a0f41c57a15727f58283637e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 13 Mar 2017 04:32:35 +0100 Subject: [PATCH] Add StoragePoolException --- qubesmgmt/exc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qubesmgmt/exc.py b/qubesmgmt/exc.py index c6e8bfa..9c0c7ae 100644 --- a/qubesmgmt/exc.py +++ b/qubesmgmt/exc.py @@ -103,6 +103,10 @@ class QubesMemoryError(QubesException, MemoryError): '''Cannot start domain, because not enough memory is available''' +class StoragePoolException(QubesException): + ''' A general storage exception ''' + + class QubesDaemonCommunicationError(QubesException, IOError): '''Error while communicating with qubesd, may mean insufficient permissions, as well'''