cognee/cognee/modules/data/exceptions/__init__.py
Igor Ilic 07d9330e4a feat: Add UnstructuredLibraryImportError
Added exception when unstructured libary is called but not installed

Feature COG-685
2024-12-08 14:53:19 +01:00

9 lines
No EOL
184 B
Python

"""
Custom exceptions for the Cognee API.
This module defines a set of exceptions for handling various data errors
"""
from .exceptions import (
UnstructuredLibraryImportError,
)