19 lines
389 B
Python
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"
|
|
] |