Coverage for src/csv_schema_validator/exceptions.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-18 20:14 +0200

1class CSVSchemaValidatorError(Exception): 

2 """Base exception for CSV schema validator""" 

3 

4class SchemaValidationError(CSVSchemaValidatorError): 

5 """Raised when schema validation fails""" 

6 

7class FieldValidationError(CSVSchemaValidatorError): 

8 """Raised when field validation fails""" 

9 

10class FileNotFoundError(CSVSchemaValidatorError): 

11 """Raised when required files are not found"""