2014-11-13 14:38:41 +01:00
|
|
|
#!/usr/bin/python2 -O
|
|
|
|
|
2014-11-13 18:10:27 +01:00
|
|
|
'''
|
|
|
|
Qubes OS
|
|
|
|
'''
|
|
|
|
|
|
|
|
__author__ = 'Invisible Things Lab'
|
|
|
|
__license__ = 'GPLv2 or later'
|
|
|
|
__version__ = 'R3'
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
import qubes._pluginloader
|
|
|
|
|
2014-11-14 15:41:27 +01:00
|
|
|
class QubesException(Exception):
|
|
|
|
'''Exception that can be shown to the user'''
|
|
|
|
pass
|
|
|
|
|