From cc0e0432fd8e45c36d63f57492cf50b1a01c86b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=A0=EA=B4=80=EA=B7=9C?= Date: Fri, 22 Nov 2024 16:29:43 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=97=90=EB=9F=AC=20=EB=A9=94?= =?UTF-8?q?=EC=8B=9C=EC=A7=80=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../koreatech/koin/global/exception/GlobalExceptionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/koreatech/koin/global/exception/GlobalExceptionHandler.java b/src/main/java/in/koreatech/koin/global/exception/GlobalExceptionHandler.java index 4a2a0bcbf..8e1518580 100644 --- a/src/main/java/in/koreatech/koin/global/exception/GlobalExceptionHandler.java +++ b/src/main/java/in/koreatech/koin/global/exception/GlobalExceptionHandler.java @@ -196,7 +196,7 @@ public ResponseEntity handleOptimisticLockException( ) { log.warn(e.getMessage()); requestLogging(((ServletWebRequest)request).getRequest()); - return buildErrorResponse(HttpStatus.CONFLICT, e.getMessage()); + return buildErrorResponse(HttpStatus.CONFLICT, "이미 처리된 요청입니다."); } @ExceptionHandler(Exception.class)