14 lines
344 B
Python
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,
|
|
)
|