Files
navigate/pylablib/Andor/base.py
2025-12-04 17:02:49 +08:00

10 lines
338 B
Python

from ...core.devio.comm_backend import DeviceError
class AndorError(DeviceError):
"""Generic Andor error"""
class AndorTimeoutError(AndorError):
"""Andor timeout error"""
class AndorFrameTransferError(AndorError):
"""Andor frame transfer error"""
class AndorNotSupportedError(AndorError):
"""Option not supported error"""