20 lines
No EOL
762 B
Python
20 lines
No EOL
762 B
Python
from cognee.exceptions import CogneeApiError
|
|
from fastapi import status
|
|
|
|
class UnstructuredLibraryImportError(CogneeApiError):
|
|
def __init__(
|
|
self,
|
|
message: str = "Import error. Unstructured library is not installed.",
|
|
name: str = "UnstructuredModuleImportError",
|
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
|
):
|
|
super().__init__(message, name, status_code)
|
|
|
|
class UnauthorizedDataAccessError(CogneeApiError):
|
|
def __init__(
|
|
self,
|
|
message: str = "User does not have permission to access this data.",
|
|
name: str = "UnauthorizedDataAccessError",
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
):
|
|
super().__init__(message, name, status_code) |