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

1"""Exceptions for metaclass-registry.""" 

2 

3 

4class RegistryError(Exception): 

5 """Base exception for registry-related errors.""" 

6 pass 

7 

8 

9class DiscoveryError(RegistryError): 

10 """Exception raised when plugin discovery fails.""" 

11 pass 

12 

13 

14class CacheError(RegistryError): 

15 """Exception raised when cache operations fail.""" 

16 pass