File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
services/board/api/exception/src/main/java/nettee/board/exception Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ public enum BoardErrorCode implements ErrorCode {
10
10
BOARD_NOT_FOUND ("게시물을 찾을 수 없습니다." , HttpStatus .NOT_FOUND ),
11
11
BOARD_GONE ("더 이상 존재하지 않는 게시물입니다." , HttpStatus .GONE ),
12
12
BOARD_FORBIDDEN ("권한이 없습니다." , HttpStatus .FORBIDDEN ),
13
- DEFAULT ("게시물 조작 오류" , HttpStatus .INTERNAL_SERVER_ERROR ),
14
- BOARD_ALREADY_EXIST ("게시물이 이미 존재합니다." , HttpStatus .CONFLICT );
13
+ BOARD_ALREADY_EXIST ("게시물이 이미 존재합니다." , HttpStatus .CONFLICT ),
14
+ UNMAPPED_BOARD_STATUS ("Unknown board status or its code." , HttpStatus .INTERNAL_SERVER_ERROR ),
15
+ DEFAULT ("게시물 조작 오류" , HttpStatus .INTERNAL_SERVER_ERROR );
15
16
16
17
private final String message ;
17
18
private final HttpStatus httpStatus ;
You can’t perform that action at this time.
0 commit comments