mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
17 lines
191 B
Python
17 lines
191 B
Python
|
|
|
|
class UFOLibError(Exception):
|
|
pass
|
|
|
|
|
|
class UnsupportedUFOFormat(UFOLibError):
|
|
pass
|
|
|
|
|
|
class GlifLibError(UFOLibError):
|
|
pass
|
|
|
|
|
|
class UnsupportedGLIFFormat(GlifLibError):
|
|
pass
|