| 18 | |
| 19 | |
| 20 | class HTTPException(Exception): |
| 21 | def __init__( |
| 22 | self, |
| 23 | status_code: int, |
| 24 | detail: str | None = None, |
| 25 | ) -> None: |
| 26 | self.status_code = status_code |
| 27 | self.detail = detail |
| 28 | |
| 29 | |
| 30 | def is_client_error(status_code: int) -> bool: |
no outgoing calls
searching dependent graphs…