Coverage for src/dmxfy/exceptions/exceptions.py: 100%
6 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-08-12 11:32 +0800
« prev ^ index » next coverage.py v7.10.1, created at 2025-08-12 11:32 +0800
1class DMXFYException(Exception):
2 """Base exception for DMXFY package"""
4 pass
7class TranslationError(DMXFYException):
8 """Raised when there's an error during translation"""
10 pass
13class ConfigurationError(DMXFYException):
14 """Raised when there's a configuration error"""
16 pass