Exception for test execution failures
| 88 | |
| 89 | |
| 90 | class TestExecutionFailedException(FastLEDTestException): |
| 91 | """Exception for test execution failures""" |
| 92 | |
| 93 | def __init__( |
| 94 | self, |
| 95 | message: str = "Test execution failed", |
| 96 | failures: Optional[list[TestFailureInfo]] = None, |
| 97 | ): |
| 98 | super().__init__(message, failures) |
| 99 | |
| 100 | |
| 101 | class TestTimeoutException(FastLEDTestException): |
no outgoing calls