updated PluginStatus dialog

svn: r6390
This commit is contained in:
Don Allingham
2006-04-21 17:08:34 +00:00
parent 471694030c
commit dcfc832ca3
8 changed files with 34 additions and 77 deletions

View File

@@ -120,3 +120,11 @@ class WindowActiveError(Exception):
def __str__(self):
return self.value
class UnavailableError(Exception):
def __init__(self,value):
Exception.__init__(self)
self.value = value
def __str__(self):
return self.value