2026-04-29 12:44:28 +02:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UnsupportedTextFileError(Exception):
|
|
|
|
|
"""Raised when a file does not appear to contain supported text content."""
|
2026-05-06 21:23:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ChromaPathError(Exception):
|
|
|
|
|
"""Raised when the configured Chroma persistence path is invalid or unusable."""
|