MCPcopy
hub / github.com/fastapi/fastapi / RequestValidationError

Class RequestValidationError

fastapi/exceptions.py:212–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210
211
212class 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
224class WebSocketRequestValidationError(ValidationException):

Callers 4

appFunction · 0.90
_solve_dependenciesMethod · 0.90

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…