27 lines
619 B
Python
27 lines
619 B
Python
from cognee.exceptions import CogneeValidationError
|
|
from fastapi import status
|
|
|
|
|
|
class NoRelevantDataError(CogneeValidationError):
|
|
"""
|
|
Represents an error when no relevant data is found during a search. This class is a
|
|
subclass of CogneeValidationError.
|
|
|
|
Public methods:
|
|
|
|
- __init__
|
|
|
|
Instance variables:
|
|
|
|
- message
|
|
- name
|
|
- status_code
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
message: str = "Search did not find any data.",
|
|
name: str = "NoRelevantDataError",
|
|
status_code=status.HTTP_404_NOT_FOUND,
|
|
):
|
|
super().__init__(message, name, status_code)
|