mirror of
https://github.com/google/pebble.git
synced 2026-02-22 04:56:50 -05:00
7 lines
172 B
Python
7 lines
172 B
Python
class Svg2PdcError(Exception):
|
|
def __str__(self):
|
|
return self.__class__.__name__ + ': ' + ' '.join(self.args)
|
|
|
|
class Svg2PdcFormatError(Svg2PdcError):
|
|
pass
|