Files

16 lines
255 B
Markdown
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
# Errors
## ValidationError
```python
class ValidationError(Exception)
```
Top level validation error.
This is thrown from the validation engine when a Validator has
on_fail=OnFailActions.EXCEPTION set and validation fails.
Inherits from Exception.