| 2 | |
| 3 | |
| 4 | class InterruptAgentFlow(Exception): |
| 5 | def __init__(self, *messages: dict): |
| 6 | super().__init__() |
| 7 | self.messages = list(messages) |
| 8 | |
| 9 | |
| 10 | class LimitsExceeded(InterruptAgentFlow): |
nothing calls this directly
no outgoing calls
no test coverage detected