Move and split database entity related exceptions into graph and database exceptions Refactor COG-502
10 lines
No EOL
204 B
Python
10 lines
No EOL
204 B
Python
"""
|
|
Custom exceptions for the Cognee API.
|
|
|
|
This module defines a set of exceptions for handling various graph errors
|
|
"""
|
|
|
|
from .exceptions import (
|
|
EntityNotFoundError,
|
|
EntityAlreadyExistsError,
|
|
) |