-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finishDateTime과 값 비교 이후 종료하도록 구현 finishDateTime 이전에 요청이 올 때 반환 될 예외 추가 [#49]
- Loading branch information
Showing
3 changed files
with
22 additions
and
0 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
13 changes: 13 additions & 0 deletions
13
...java/com/careerzip/global/error/exception/business/QuestionPaperNotFinishedException.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,13 @@ | ||
package com.careerzip.global.error.exception.business; | ||
|
||
import com.careerzip.global.error.exception.BusinessException; | ||
import com.careerzip.global.error.response.ErrorCode; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class QuestionPaperNotFinishedException extends BusinessException { | ||
|
||
public QuestionPaperNotFinishedException() { | ||
super(ErrorCode.QUESTION_PAPER_NOT_FINISHED); | ||
} | ||
} |
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