| 210 | |
| 211 | |
| 212 | class RequestValidationError(ValidationException): |
| 213 | def __init__( |
| 214 | self, |
| 215 | errors: Sequence[Any], |
| 216 | *, |
| 217 | body: Any = None, |
| 218 | endpoint_ctx: EndpointContext | None = None, |
| 219 | ) -> None: |
| 220 | super().__init__(errors, endpoint_ctx=endpoint_ctx) |
| 221 | self.body = body |
| 222 | |
| 223 | |
| 224 | class WebSocketRequestValidationError(ValidationException): |
no outgoing calls
searching dependent graphs…