CAP/MiniC/Lib/Errors.py

19 lines
233 B
Python
Raw Normal View History

2024-09-29 09:58:25 +02:00
class MiniCRuntimeError(Exception):
pass
class MiniCInternalError(Exception):
pass
class MiniCUnsupportedError(Exception):
pass
class MiniCTypeError(Exception):
pass
class AllocationError(Exception):
pass