-
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.
* fix : ID 반환 변경 * chore : BOOKED- > WAITING * feat: exception 분리 * chore: example 변경 * fix: ENUM로직 수정 --------- Co-authored-by: Lee seung hak <[email protected]> Co-authored-by: 강현욱 <[email protected]> Co-authored-by: hyunw9 <[email protected]>
- Loading branch information
1 parent
bc45f7a
commit 65e92aa
Showing
8 changed files
with
32 additions
and
23 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
7 changes: 7 additions & 0 deletions
7
src/main/java/com/shallwe/domain/reservation/exception/InvalidReceiverException.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,7 @@ | ||
package com.shallwe.domain.reservation.exception; | ||
|
||
public class InvalidReceiverException extends RuntimeException{ | ||
|
||
public InvalidReceiverException(){super("수신자 정보가 올바르지 않습니다.");} | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/shallwe/domain/reservation/exception/InvalidSenderException.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.shallwe.domain.reservation.exception; | ||
|
||
public class InvalidSenderException extends RuntimeException{ | ||
|
||
public InvalidSenderException(){ | ||
super("발송자 정보가 올바르지 않습니다."); | ||
} | ||
|
||
} |
9 changes: 0 additions & 9 deletions
9
src/main/java/com/shallwe/domain/reservation/exception/InvalidUserException.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