markitect-main/tddai
tegwick bbc6192fe1 refactor: Standardize error handling patterns across codebase
Comprehensive error handling improvements addressing inconsistent patterns:

• Created markitect/exceptions.py with complete domain-specific exception hierarchy
  - MarkitectError base class with context and cause chaining support
  - Specific exceptions for Document, AST, Cache, Database, Schema operations
  - Built-in logging and context preservation

• Fixed overly broad exception handling in tddai modules:
  - issue_fetcher.py: Replace generic Exception with specific Gitea errors
  - project_manager.py: Proper error translation with context preservation
  - coverage_analyzer.py: Replace silent suppression with logging

• Enhanced cache_service.py error handling:
  - Specific OSError/PermissionError handling for file operations
  - Logging integration for unexpected errors
  - Preserved error collection and reporting

• Implemented proper exception chaining patterns:
  - All error translations use `raise ... from e` for debugging
  - Preserved original exception context and stack traces
  - Added docstring declarations of raised exceptions

• Benefits:
  - Eliminates silent error suppression and debugging black holes
  - Provides specific, actionable error messages
  - Preserves full error context for troubleshooting
  - Establishes consistent patterns for future development

Resolves issue #21: Error handling standardization

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-26 16:35:13 +02:00
..
__init__.py feat: Implement comprehensive project management system with issue lifecycle support 2025-09-24 23:51:29 +02:00
config.py feat: Enhance tddai configuration with auto-loading .env files 2025-09-24 22:53:27 +02:00
coverage_analyzer.py refactor: Standardize error handling patterns across codebase 2025-09-26 16:35:13 +02:00
exceptions.py feat: implement tddai Python library for TDD workspace management 2025-09-22 02:04:19 +02:00
issue_creator.py refactor: Factor out Gitea interfacing into clean facade pattern 2025-09-26 14:25:40 +02:00
issue_fetcher.py refactor: Standardize error handling patterns across codebase 2025-09-26 16:35:13 +02:00
issue_writer.py fix: Resolve label assignment issue using dedicated Gitea API endpoint 2025-09-25 00:31:37 +02:00
project_manager.py refactor: Standardize error handling patterns across codebase 2025-09-26 16:35:13 +02:00
test_generator.py feat: implement tddai Python library for TDD workspace management 2025-09-22 02:04:19 +02:00
workspace.py fix: Resolve TDD infrastructure test failures and API mismatches 2025-09-23 04:46:22 +02:00