Source code for svcs.exceptions

# SPDX-FileCopyrightText: 2023 Hynek Schlawack <hs@ox.cx>
#
# SPDX-License-Identifier: MIT

from __future__ import annotations


[docs] class ServiceNotFoundError(Exception): """ Raised when the requested service type is not registered. """