[#56] 예약 & 결제 프로세스 및 패키지 구조 재정의 #57

Merged
pricelees merged 45 commits from refactor/#56 into main 2025-10-09 09:33:29 +00:00
Showing only changes of commit c76f6bba68 - Show all commits

View File

@ -25,7 +25,7 @@ class OrderExceptionHandler(
val httpStatus: HttpStatus = errorCode.httpStatus val httpStatus: HttpStatus = errorCode.httpStatus
val errorResponse = OrderErrorResponse( val errorResponse = OrderErrorResponse(
code = errorCode.errorCode, code = errorCode.errorCode,
message = e.message, message = if (httpStatus.isClientError()) e.message else errorCode.message,
trial = e.trial trial = e.trial
) )