summaryrefslogtreecommitdiffstats
path: root/src/Gui/ABRTExceptions.py
blob: 5f759dd24dc92df79b3de042e1abad5f802b5420 (plain)
1
2
3
4
5
6
class IsRunning(Exception):
    def __init__(self):
        self.what = "Another client is already running, trying to wake it."
    def __str__(self):
        return self.what