mirror of https://github.com/m-labs/artiq.git
coredevice.exceptions: add CacheError.
This commit is contained in:
parent
211af77e77
commit
4198601abb
|
@ -11,6 +11,10 @@ class InternalError(Exception):
|
||||||
"""Raised when the runtime encounters an internal error condition."""
|
"""Raised when the runtime encounters an internal error condition."""
|
||||||
|
|
||||||
|
|
||||||
|
class CacheError(Exception):
|
||||||
|
"""Raised when putting a value into a cache row would violate memory safety."""
|
||||||
|
|
||||||
|
|
||||||
class RTIOUnderflow(Exception):
|
class RTIOUnderflow(Exception):
|
||||||
"""Raised when the CPU fails to submit a RTIO event early enough
|
"""Raised when the CPU fails to submit a RTIO event early enough
|
||||||
(with respect to the event's timestamp).
|
(with respect to the event's timestamp).
|
||||||
|
|
Loading…
Reference in New Issue