Clementine-audio-player-Mac.../data/pythonlibs/uic/exceptions.py

10 lines
215 B
Python
Raw Normal View History

class NoSuchWidgetError(Exception):
def __str__(self):
return "Unknown Qt widget: %s" % (self.args[0],)
class UnsupportedPropertyError(Exception):
pass
class WidgetPluginError(Exception):
pass