core3 move: class QubesException

This commit is contained in:
Wojtek Porczyk 2014-11-14 15:41:27 +01:00
rodzic 65595e3b39
commit e1a6fb2859
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -125,9 +125,6 @@ defaults = {
qubes_max_qid = 254
qubes_max_netid = 254
class QubesException (Exception):
pass
class QubesVMMConnection(object):
def __init__(self):
self._libvirt_conn = None

Wyświetl plik

@ -10,3 +10,7 @@ __version__ = 'R3'
import qubes._pluginloader
class QubesException(Exception):
'''Exception that can be shown to the user'''
pass