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