nibcq.errors.TestSessionMismatchError ===================================== .. py:exception:: nibcq.errors.TestSessionMismatchError(message: str = 'The selected test type is incompatible with the current session configuration.') Bases: :py:obj:`BCQError` Exception raised when there is a mismatch between test type and session configuration. This error occurs when the selected test type is incompatible with the current session settings. :param message: Custom error message. Defaults to a standard message. :type message: str, optional .. rubric:: Example >>> raise TestSessionMismatchError( >>> "The selected test type is incompatible with the current session configuration." >>> )