mirror of
https://github.com/google/pebble.git
synced 2025-05-07 02:11:40 -04:00
6 lines
181 B
Python
6 lines
181 B
Python
class PblConvertError(Exception):
|
|
def __str__(self):
|
|
return self.__class__.__name__ + ': ' + ' '.join(self.args)
|
|
|
|
class PblConvertFormatError(PblConvertError):
|
|
pass
|