(self, failure_point)
| 309 | |
| 310 | class FlakyException(Exception): |
| 311 | def __init__(self, failure_point): |
| 312 | if failure_point == "failure_point_init": |
| 313 | raise ValueError("triggered_failure_point_init") |
| 314 | self.failure_point = failure_point |
| 315 | |
| 316 | def __str__(self): |
| 317 | if self.failure_point == "failure_point_str": |
nothing calls this directly
no outgoing calls
no test coverage detected