diff options
Diffstat (limited to 'src/Gui/ABRTExceptions.py')
-rw-r--r-- | src/Gui/ABRTExceptions.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Gui/ABRTExceptions.py b/src/Gui/ABRTExceptions.py new file mode 100644 index 00000000..5f759dd2 --- /dev/null +++ b/src/Gui/ABRTExceptions.py @@ -0,0 +1,6 @@ +class IsRunning(Exception): + def __init__(self): + self.what = "Another client is already running, trying to wake it." + def __str__(self): + return self.what + |