Coverage for src / ezqt_app / domain / errors / __init__.py: 100.00%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-06 13:12 +0000

1# /////////////////////////////////////////////////////////////// 

2# DOMAIN.ERRORS - Error objects aggregator 

3# Project: ezqt_app 

4# /////////////////////////////////////////////////////////////// 

5 

6"""Domain-level typed exceptions exposed for services and adapters.""" 

7 

8from __future__ import annotations 

9 

10# /////////////////////////////////////////////////////////////// 

11# IMPORTS 

12# /////////////////////////////////////////////////////////////// 

13from .base import DomainError, EzQtError 

14from .bootstrap import BootstrapError, InitAlreadyInitializedError, InitStepError 

15from .resources import ( 

16 InvalidOverwritePolicyError, 

17 MissingPackageResourceError, 

18 ResourceCompilationError, 

19 ResourceError, 

20) 

21 

22# /////////////////////////////////////////////////////////////// 

23# IMPORTS 

24# /////////////////////////////////////////////////////////////// 

25__all__ = [ 

26 "EzQtError", 

27 "DomainError", 

28 "BootstrapError", 

29 "InitAlreadyInitializedError", 

30 "InitStepError", 

31 "ResourceError", 

32 "MissingPackageResourceError", 

33 "ResourceCompilationError", 

34 "InvalidOverwritePolicyError", 

35]