-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #526 from Kernel360/521-feat-doubles-tournament-le…
…ague-plus-byematch feat: 토너먼트 복식 부전승 로직 구현
- Loading branch information
Showing
8 changed files
with
132 additions
and
37 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
15 changes: 0 additions & 15 deletions
15
domain/src/main/java/org/badminton/domain/common/exception/match/ByeMatchException.java
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
...in/java/org/badminton/domain/common/exception/match/RegisterScoreInByeMatchException.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,16 @@ | ||
package org.badminton.domain.common.exception.match; | ||
|
||
import org.badminton.domain.common.enums.MatchType; | ||
import org.badminton.domain.common.error.ErrorCode; | ||
import org.badminton.domain.common.exception.BadmintonException; | ||
|
||
public class RegisterScoreInByeMatchException extends BadmintonException { | ||
|
||
public RegisterScoreInByeMatchException(Long matchId, MatchType matchType) { | ||
super(ErrorCode.BYE_MATCH_ACTION_NOT_ALLOWED, "[매치 아이디 : " + matchId + "매치 유형: " + matchType + "]"); | ||
} | ||
|
||
public RegisterScoreInByeMatchException(Long matchId, MatchType matchType, Exception e) { | ||
super(ErrorCode.BYE_MATCH_ACTION_NOT_ALLOWED, "[매치 아이디 : " + matchId + "매치 유형: " + matchType + "]", e); | ||
} | ||
} |
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
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
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
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
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