Coverage for src / metaclass_registry / exceptions.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-10 22:33 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-10 22:33 +0000
1"""Exceptions for metaclass-registry."""
4class RegistryError(Exception):
5 """Base exception for registry-related errors."""
6 pass
9class DiscoveryError(RegistryError):
10 """Exception raised when plugin discovery fails."""
11 pass
14class CacheError(RegistryError):
15 """Exception raised when cache operations fail."""
16 pass