mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 12:28:31 +01:00
10 lines
215 B
Python
10 lines
215 B
Python
class NoSuchWidgetError(Exception):
|
|
def __str__(self):
|
|
return "Unknown Qt widget: %s" % (self.args[0],)
|
|
|
|
class UnsupportedPropertyError(Exception):
|
|
pass
|
|
|
|
class WidgetPluginError(Exception):
|
|
pass
|