language/core: add RuntimeException

This commit is contained in:
Sebastien Bourdeauducq 2014-09-29 17:36:35 +08:00
parent 4a1cad5227
commit 035b541a73
2 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,8 @@
class RuntimeException(Exception):
pass
from artiq.language.core import RuntimeException
# Must be kept in sync with soc/runtime/exceptions.h
class OutOfMemory(RuntimeException):
eid = 0

View File

@ -346,4 +346,12 @@ def EncodedException(eid):
return EncodedException
class RuntimeException(Exception):
"""Base class for all exceptions used by the device runtime.
Those exceptions are defined in ``artiq.devices.runtime_exceptions``.
"""
pass
first_user_eid = 1024