17 lines
249 B
Python
17 lines
249 B
Python
#!/usr/bin/python2 -O
|
|
|
|
'''
|
|
Qubes OS
|
|
'''
|
|
|
|
__author__ = 'Invisible Things Lab'
|
|
__license__ = 'GPLv2 or later'
|
|
__version__ = 'R3'
|
|
|
|
import qubes._pluginloader
|
|
|
|
class QubesException(Exception):
|
|
'''Exception that can be shown to the user'''
|
|
pass
|
|
|