pebble/third_party/pbl/pblconvert/pblconvert/exceptions.py
2025-01-27 11:38:16 -08:00

6 lines
181 B
Python

class PblConvertError(Exception):
def __str__(self):
return self.__class__.__name__ + ': ' + ' '.join(self.args)
class PblConvertFormatError(PblConvertError):
pass