cognee/cognitive_architecture/modules/ingestion/exceptions.py
2024-03-12 13:42:51 +01:00

6 lines
125 B
Python

class IngestionException(Exception):
message: str
def __init__(self, message: str):
self.message = message