Source code for bec_lib.bec_errors

"""
This module contains the custom exceptions used in the BEC library.
"""


[docs] class ScanAbortion(Exception): """Scan abortion exception"""
[docs] class ScanInterruption(Exception): """Scan interruption exception"""
[docs] class ServiceConfigError(Exception): """Service config error"""
[docs] class DeviceConfigError(Exception): """Device config error"""