-
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 #525 from Kernel360/522-refactor-add-a-member-poli…
…cy-when-start-match refactor: add a member policy when start match
- Loading branch information
Showing
10 changed files
with
42 additions
and
30 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
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
15 changes: 15 additions & 0 deletions
15
.../org/badminton/domain/common/exception/match/LeagueParticipantNotDeterminedException.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,15 @@ | ||
package org.badminton.domain.common.exception.match; | ||
|
||
import org.badminton.domain.common.error.ErrorCode; | ||
import org.badminton.domain.common.exception.BadmintonException; | ||
|
||
public class LeagueParticipantNotDeterminedException extends BadmintonException { | ||
|
||
public LeagueParticipantNotDeterminedException(Long matchId) { | ||
super(ErrorCode.LEAGUE_PARTICIPANTS_NOT_DETERMINED, "[매치 번호 : " + matchId + "]"); | ||
} | ||
|
||
public LeagueParticipantNotDeterminedException(Long matchId, Exception e) { | ||
super(ErrorCode.LEAGUE_PARTICIPANTS_NOT_DETERMINED, "[매치 번호 : " + matchId + "]", 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
15 changes: 0 additions & 15 deletions
15
.../badminton/domain/common/exception/match/LeagueParticipationNotExistInMatchException.java
This file was deleted.
Oops, something went wrong.
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