plg4-dev-server / backend /core /exceptions.py
Jesse Johnson
New commit for backend deployment: 2025-09-25_13-24-03
c59d808
raw
history blame contribute delete
412 Bytes
# Custom exception handlers for the Recipe Recommendation Bot
class RecipeNotFoundError(Exception):
"""Raised when a recipe is not found"""
pass
class LLMServiceError(Exception):
"""Raised when LLM service encounters an error"""
pass
class VectorStoreError(Exception):
"""Raised when vector store operations fail"""
pass
# TODO: Add more specific exception classes and error handlers