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
« 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
4"""Service-layer error types for Bijux CLI."""
6from __future__ import annotations
8from bijux_cli.core.errors import InternalError
11class ServiceError(InternalError):
12 """Raised for service-related failures."""
15__all__ = ["ServiceError"]