nibcq.errors.ParallelDevicesConfigurationError ============================================== .. py:exception:: nibcq.errors.ParallelDevicesConfigurationError(message: str = 'Invalid channel modes. Must have exactly 1 leader channel and 1 or more follower channels.') Bases: :py:obj:`BCQError` Exception raised when there is an issue with parallel devices configuration. This error occurs when the configuration of devices connected in parallel is invalid or incompatible with the test requirements. :param message: Custom error message. Defaults to a standard message. :type message: str, optional .. rubric:: Example >>> raise ParallelDevicesConfigurationError( >>> "Invalid channel modes. Must have exactly 1 leader channel >>> and 1 or more follower channels." >>> )