hyerimmy 910bd902b1
Some checks failed
HealthSync Intelligence CI / build-and-push (push) Has been cancelled
feat : initial commit
2025-06-20 05:28:30 +00:00

19 lines
389 B
Python

# app/exceptions/__init__.py
"""
HealthSync AI 예외 패키지
"""
from .custom_exceptions import (
HealthSyncException,
UserNotFoundException,
HealthDataNotFoundException,
DatabaseException,
ClaudeAPIException
)
__all__ = [
"HealthSyncException",
"UserNotFoundException",
"HealthDataNotFoundException",
"DatabaseException",
"ClaudeAPIException"
]