cognee/cognee/exceptions/__init__.py
2025-08-13 11:29:16 +02:00

14 lines
344 B
Python

"""
Custom exceptions for the Cognee API.
This module defines a set of exceptions for handling various application errors,
such as System, Validation, Configuration or TransientErrors
"""
from .exceptions import (
CogneeApiError,
CogneeSystemError,
CogneeValidationError,
CogneeConfigurationError,
CogneeTransientError,
)