Files
njts-accounting-core/backend/app/core/exceptions.py
FNOS-WIN11ENT\choshoukaku c845373db8 修正
2025-12-14 00:30:24 +09:00

12 lines
307 B
Python

from fastapi import HTTPException
class BusinessException(HTTPException):
def __init__(self, error_code: str, message: str):
super().__init__(
status_code=400,
detail={
"error_code": error_code,
"message": message
}
)