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

7 lines
172 B
Python

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