e2b03d98创建于 2025年9月23日历史提交
"""Custom exceptions for the WhyHow API."""


class NotFoundException(Exception):
    """Exception raised when an item is not found."""

    def __init__(self, message: str):
        """Initialise the NotFoundException."""
        super().__init__(message)