Skip to content

Commit cc66255

Browse files
authored
Update ErrorCode.java
1 parent 387097a commit cc66255

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/java/com/example/FixLog/exception/ErrorCode.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ public enum ErrorCode {
3030
UNAUTHORIZED(HttpStatus.UNAUTHORIZED, "권한이 없습니다."),
3131
INVALID_REQUEST(HttpStatus.BAD_REQUEST, "요청 데이터가 유효하지 않습니다."),
3232
S3_UPLOAD_FAILED(HttpStatus.BAD_REQUEST, "S3 파일 업로드에 실패했습니다."),
33-
IMAGE_UPLOAD_FAILED(HttpStatus.NOT_FOUND, "이미지 파일이 업로드되지 않았습니다."),
34-
LOGOUT_SUCCESS(HttpStatus.OK, "로그아웃이 정상적으로 처리되었습니다.");
33+
IMAGE_UPLOAD_FAILED(HttpStatus.NOT_FOUND, "이미지 파일이 업로드되지 않았습니다.");
3534

3635
private final HttpStatus status;
3736
private final String message;
38-
}
37+
}

0 commit comments

Comments
 (0)