Exception for test timeouts
| 99 | |
| 100 | |
| 101 | class TestTimeoutException(FastLEDTestException): |
| 102 | """Exception for test timeouts""" |
| 103 | |
| 104 | def __init__( |
| 105 | self, |
| 106 | message: str = "Test execution timed out", |
| 107 | failures: Optional[list[TestFailureInfo]] = None, |
| 108 | ): |
| 109 | super().__init__(message, failures) |