Update __init__.py

This commit is contained in:
hajdul88 2025-08-13 11:29:16 +02:00
parent ed555a731d
commit 0555dd9dda

View file

@ -2,7 +2,7 @@
Custom exceptions for the Cognee API.
This module defines a set of exceptions for handling various application errors,
such as service failures, resource conflicts, and invalid operations.
such as System, Validation, Configuration or TransientErrors
"""
from .exceptions import (
@ -10,4 +10,5 @@ from .exceptions import (
CogneeSystemError,
CogneeValidationError,
CogneeConfigurationError,
CogneeTransientError,
)