Files
Chromy/chromy/errors.py
T

10 lines
281 B
Python
Raw Normal View History

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."""