ShotRetryConfig
- class caqtus.experiment_control.sequence_execution.ShotRetryConfig(
- exceptions_to_retry: tuple[type[Exception], ...] = NOTHING,
- number_of_attempts: int = attr_dict['number_of_attempts'].default,
Bases:
objectSpecifies how to retry a shot if an error occurs.
- exceptions_to_retry
If an exception occurs while running a shot, it will be
- retried if it is an instance of one of the exceptions in this tuple.