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
« 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# ///////////////////////////////////////////////////////////////
6"""Domain-level typed exceptions exposed for services and adapters."""
8from __future__ import annotations
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)
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]