"""
Global Socon exception and warning classes.
"""
[docs]class RegistryNotReady(Exception):
"""Raised when the registry is not ready"""
[docs]class CommandNotFound(Exception):
"""The command cannot be found"""
[docs]class ManagerNotHooked(Exception):
"""The manager does not contain any hook implementation"""
[docs]class ManagerNotFound(Exception):
"""Manager is not found"""
[docs]class HookNotFound(Exception):
"""Cannot find the hook in the manager"""