10 lines
281 B
Python
10 lines
281 B
Python
from __future__ import annotations
|
|
|
|
|
|
class UnsupportedTextFileError(Exception):
|
|
"""Raised when a file does not appear to contain supported text content."""
|
|
|
|
|
|
class ChromaPathError(Exception):
|
|
"""Raised when the configured Chroma persistence path is invalid or unusable."""
|