core3 move: class QubesException

This commit is contained in:
Wojtek Porczyk 2014-11-14 15:41:27 +01:00
parent 65595e3b39
commit e1a6fb2859
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

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