Skip to content

Commit 98b88eb

Browse files
committed
CLAP-434 Fix: MethodArgumentNotValidException에 대해 400 에러를 반환하도록 수정
1 parent efe0935 commit 98b88eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/clap/server/exception/ExceptionAdvice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public ResponseEntity<Object> handleMethodArgumentNotValid(
5050
return handleExceptionInternalArgs(
5151
e,
5252
HttpHeaders.EMPTY,
53-
GlobalErrorCode.INTERNAL_SERVER_ERROR,
53+
GlobalErrorCode.BAD_REQUEST,
5454
request,
5555
errors
5656
);

0 commit comments

Comments
 (0)