Coverage for src/local_deep_research/error_handling/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-06-03 23:15 +0000

1""" 

2Error Handling Module for Local Deep Research 

3 

4This module provides comprehensive error handling capabilities including: 

5- Error categorization and analysis 

6- User-friendly error report generation 

7- Integration with partial research results 

8""" 

9 

10from .error_reporter import ErrorReporter 

11from .report_generator import ErrorReportGenerator 

12 

13__all__ = ["ErrorReportGenerator", "ErrorReporter"]