An error raised during failures to generate a JSON schema for some `CoreSchema`. Attributes: message: Description of the error.
| 154 | |
| 155 | |
| 156 | class PydanticInvalidForJsonSchema(PydanticUserError): |
| 157 | """An error raised during failures to generate a JSON schema for some `CoreSchema`. |
| 158 | |
| 159 | Attributes: |
| 160 | message: Description of the error. |
| 161 | """ |
| 162 | |
| 163 | def __init__(self, message: str) -> None: |
| 164 | super().__init__(message, code='invalid-for-json-schema') |
| 165 | |
| 166 | |
| 167 | class PydanticForbiddenQualifier(PydanticUserError): |
no outgoing calls
no test coverage detected