We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c672ab2 commit 828cf36Copy full SHA for 828cf36
src/main/java/com/somemore/global/handler/GlobalExceptionHandler.java
@@ -19,8 +19,8 @@ ProblemDetail handleBadRequestException(final BadRequestException e) {
19
//status와 에러에 대한 자세한 설명
20
ProblemDetail problemDetail = ProblemDetail.forStatusAndDetail(HttpStatus.BAD_REQUEST, e.getMessage());
21
22
- //아래와 같이 필드 확장 가능
23
- problemDetail.setTitle("무슨 에러입니다");
+ // 아래와 같이 필드 확장 가능
+ problemDetail.setTitle("잘못된 요청입니다");
24
25
return problemDetail;
26
}
0 commit comments