Coverage for  / home / runner / work / bijux-cli / bijux-cli / src / bijux_cli / services / errors.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.2, created at 2026-01-26 17:59 +0000

1# SPDX-License-Identifier: Apache-2.0 

2# Copyright © 2025 Bijan Mousavi 

3 

4"""Service-layer error types for Bijux CLI.""" 

5 

6from __future__ import annotations 

7 

8from bijux_cli.core.errors import InternalError 

9 

10 

11class ServiceError(InternalError): 

12 """Raised for service-related failures.""" 

13 

14 

15__all__ = ["ServiceError"]