Raised when there is a cycle when drawing the call tree.
| 12 | |
| 13 | |
| 14 | class CycleFoundException(Exception): |
| 15 | """Raised when there is a cycle when drawing the call tree.""" |
| 16 | def __init__( |
| 17 | self, |
| 18 | cycles: list[list[int]], |
| 19 | id2name: dict[int, str], |
| 20 | ) -> None: |
| 21 | super().__init__(cycles, id2name) |
| 22 | self.cycles = cycles |
| 23 | self.id2name = id2name |
| 24 | |
| 25 | |
| 26 |
no outgoing calls
no test coverage detected
searching dependent graphs…