-
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.
Browse files
Browse the repository at this point in the history
…actor: 유저 신고(createUserReport) 검증 코드 순서 수정
- Loading branch information
Showing
10 changed files
with
99 additions
and
41 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
9 changes: 9 additions & 0 deletions
9
server/src/main/java/com/yogit/server/report/exception/AlreadyReportBoardException.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,9 @@ | ||
package com.yogit.server.report.exception; | ||
|
||
import static com.yogit.server.report.exception.ReportExceptionList.*; | ||
|
||
public class AlreadyReportBoardException extends ReportException{ | ||
public AlreadyReportBoardException(){ | ||
super(ALREADY_REPORT_BOARD.getCODE(), ALREADY_REPORT_BOARD.getHTTPSTATUS(), ALREADY_REPORT_BOARD.getMESSAGE()); | ||
} | ||
} |
8 changes: 0 additions & 8 deletions
8
server/src/main/java/com/yogit/server/report/exception/AlreadyReportException.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
server/src/main/java/com/yogit/server/report/exception/AlreadyReportUserException.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,8 @@ | ||
package com.yogit.server.report.exception; | ||
|
||
public class AlreadyReportUserException extends ReportException{ | ||
public AlreadyReportUserException() | ||
{ | ||
super(ReportExceptionList.ALREADY_REPORT_USER.getCODE(), ReportExceptionList.ALREADY_REPORT_USER.getHTTPSTATUS(), ReportExceptionList.ALREADY_REPORT_USER.getMESSAGE()); | ||
} | ||
} |
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