-
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 pull request #56 from tukcomCD2024/RIngo-145
R ingo 145
- Loading branch information
Showing
9 changed files
with
102 additions
and
39 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
11 changes: 11 additions & 0 deletions
11
BackEnd/src/main/java/springwebsocket/webchat/member/exception/FindEmailException.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 springwebsocket.webchat.member.exception; | ||
|
||
import springwebsocket.webchat.global.error.BusinessException; | ||
import springwebsocket.webchat.global.response.ErrorCode; | ||
|
||
public class FindEmailException extends BusinessException { | ||
|
||
public FindEmailException() { | ||
super(ErrorCode.FIND_EMAIL_TAKEN); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...nd/src/main/java/springwebsocket/webchat/member/exception/FindEmailPasswordException.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 springwebsocket.webchat.member.exception; | ||
|
||
import springwebsocket.webchat.global.error.BusinessException; | ||
import springwebsocket.webchat.global.response.ErrorCode; | ||
|
||
public class FindEmailPasswordException extends BusinessException { | ||
public FindEmailPasswordException() { | ||
super(ErrorCode.FIND_TAKEN); | ||
} | ||
} |
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