-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ActivityGroupBoardService): 활동 게시판 카테고리별 유효성 검사 함수화 #447
- Loading branch information
1 parent
457e004
commit 4f5d6ba
Showing
3 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
.../clab/api/domain/activity/activitygroup/exception/FeedbackBoardHasNoContentException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package page.clab.api.domain.activity.activitygroup.exception; | ||
|
||
public class FeedbackBoardHasNoContentException extends RuntimeException { | ||
|
||
private static final String DEFAULT_MESSAGE = "피드백 게시판에 내용이 없습니다."; | ||
|
||
public FeedbackBoardHasNoContentException() { | ||
super(DEFAULT_MESSAGE); | ||
} | ||
|
||
public FeedbackBoardHasNoContentException(String s) { | ||
super(s); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters