Source code for pydgilib_extra.dgilib_extra_exceptions

"""Custom Exceptions for DGILibExtra."""

from pydgilib.dgilib_exceptions import Error


[docs]class InterfaceNotAvailableError(Error): """Exception raised when enabling interface.""" pass
[docs]class PowerStatusError(Error): """Exception raised when checking `auxiliary_power_get_status()`.""" pass
[docs]class PowerReadError(Error): """Exception raised when reading power buffer.""" pass