-
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.
Merge remote-tracking branch 'origin/develop' into feat/115
- Loading branch information
Showing
58 changed files
with
1,215 additions
and
289 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
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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/gamegoo/apiPayload/exception/handler/FriendHandler.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,11 @@ | ||
package com.gamegoo.apiPayload.exception.handler; | ||
|
||
import com.gamegoo.apiPayload.code.BaseErrorCode; | ||
import com.gamegoo.apiPayload.exception.GeneralException; | ||
|
||
public class FriendHandler extends GeneralException { | ||
|
||
public FriendHandler(BaseErrorCode code) { | ||
super(code); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/gamegoo/apiPayload/exception/handler/MannerHandler.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,10 @@ | ||
package com.gamegoo.apiPayload.exception.handler; | ||
|
||
import com.gamegoo.apiPayload.code.BaseErrorCode; | ||
import com.gamegoo.apiPayload.exception.GeneralException; | ||
|
||
public class MannerHandler extends GeneralException { | ||
public MannerHandler(BaseErrorCode code) { | ||
super(code); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/com/gamegoo/apiPayload/exception/handler/NotificationHandler.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,11 @@ | ||
package com.gamegoo.apiPayload.exception.handler; | ||
|
||
import com.gamegoo.apiPayload.code.BaseErrorCode; | ||
import com.gamegoo.apiPayload.exception.GeneralException; | ||
|
||
public class NotificationHandler extends GeneralException { | ||
|
||
public NotificationHandler(BaseErrorCode code) { | ||
super(code); | ||
} | ||
} |
Oops, something went wrong.