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

1class DMXFYException(Exception): 

2 """Base exception for DMXFY package""" 

3 

4 pass 

5 

6 

7class TranslationError(DMXFYException): 

8 """Raised when there's an error during translation""" 

9 

10 pass 

11 

12 

13class ConfigurationError(DMXFYException): 

14 """Raised when there's a configuration error""" 

15 

16 pass