Raised when recursion depth is exceeded while iterating a model group.
| 274 | |
| 275 | |
| 276 | class XMLSchemaModelDepthError(XMLSchemaModelError): |
| 277 | """Raised when recursion depth is exceeded while iterating a model group.""" |
| 278 | |
| 279 | @property |
| 280 | def message(self) -> str: |
| 281 | return f"{self._message} {self.validator!r}." |
| 282 | |
| 283 | def __init__(self, group: 'XsdGroup') -> None: |
| 284 | msg = "maximum model recursion depth exceeded while iterating" |
| 285 | super().__init__(group, message=msg) |
| 286 | |
| 287 | |
| 288 | class XMLSchemaValidationError(XMLSchemaValidatorError, ValueError): |
no outgoing calls
searching dependent graphs…