Files
encoach_backend/app/exceptions/__init__.py
2024-10-01 19:31:01 +01:00

7 lines
135 B
Python

from .exceptions import CustomException, UnauthorizedException
__all__ = [
"CustomException",
"UnauthorizedException"
]