<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Co-authored-by: Daniel Molnar <soobrosa@gmail.com>
14 lines
334 B
Python
14 lines
334 B
Python
"""
|
|
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.
|
|
"""
|
|
|
|
from .exceptions import (
|
|
CogneeApiError,
|
|
ServiceError,
|
|
InvalidValueError,
|
|
InvalidAttributeError,
|
|
CriticalError,
|
|
)
|