| 222 | |
| 223 | |
| 224 | class WebSocketRequestValidationError(ValidationException): |
| 225 | def __init__( |
| 226 | self, |
| 227 | errors: Sequence[Any], |
| 228 | *, |
| 229 | endpoint_ctx: EndpointContext | None = None, |
| 230 | ) -> None: |
| 231 | super().__init__(errors, endpoint_ctx=endpoint_ctx) |
| 232 | |
| 233 | |
| 234 | class ResponseValidationError(ValidationException): |
no outgoing calls
no test coverage detected
searching dependent graphs…