Source code for metaclass_registry.exceptions

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


[docs] class RegistryError(Exception): """Base exception for registry-related errors.""" pass
[docs] class DiscoveryError(RegistryError): """Exception raised when plugin discovery fails.""" pass
[docs] class CacheError(RegistryError): """Exception raised when cache operations fail.""" pass