Coverage for src / ezqt_app / services / bootstrap / exceptions.py: 100.00%

3 statements  

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

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

2# SERVICES.BOOTSTRAP.EXCEPTIONS - Bootstrap exception facade 

3# Project: ezqt_app 

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

5 

6"""Bootstrap exception exports for service-layer convenience imports.""" 

7 

8from __future__ import annotations 

9 

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

11# PUBLIC API 

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

13from ...domain.errors import BootstrapError, InitAlreadyInitializedError, InitStepError 

14 

15# /////////////////////////////////////////////////////////////// 

16# PUBLIC API 

17# /////////////////////////////////////////////////////////////// 

18__all__ = [ 

19 "BootstrapError", 

20 "InitAlreadyInitializedError", 

21 "InitStepError", 

22]