# Error Handling

When working with real-world data you need to handle edge cases.

``` python
from gdtest_sec_index_hero import process, validate

# Empty lists are handled cleanly
result = process([], strict=True)
print(result)  # []

# Validation catches missing fields
assert not validate({'name': str}, {'age': 30})
```
