| 232 | |
| 233 | |
| 234 | class ResponseValidationError(ValidationException): |
| 235 | def __init__( |
| 236 | self, |
| 237 | errors: Sequence[Any], |
| 238 | *, |
| 239 | body: Any = None, |
| 240 | endpoint_ctx: EndpointContext | None = None, |
| 241 | ) -> None: |
| 242 | super().__init__(errors, endpoint_ctx=endpoint_ctx) |
| 243 | self.body = body |
| 244 | |
| 245 | |
| 246 | class PydanticV1NotSupportedError(FastAPIError): |
no outgoing calls
no test coverage detected
searching dependent graphs…