-
Notifications
You must be signed in to change notification settings - Fork 1
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 #129 from studio-recoding/feat-chat-delete
[🚀feat] 채팅으로 일정 삭제 API
- Loading branch information
Showing
4 changed files
with
68 additions
and
1 deletion.
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
18 changes: 18 additions & 0 deletions
18
src/main/java/Ness/Backend/global/error/exception/NotFoundScheduleException.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,18 @@ | ||
package Ness.Backend.global.error.exception; | ||
|
||
import Ness.Backend.global.error.ErrorCode; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class NotFoundScheduleException extends BaseException { | ||
public NotFoundScheduleException() { | ||
super(ErrorCode.NOTFOUND_SCHEDULE, ErrorCode.NOTFOUND_SCHEDULE.getMessage()); | ||
} | ||
public NotFoundScheduleException(String message) { | ||
super(ErrorCode.NOTFOUND_SCHEDULE, message); | ||
} | ||
public NotFoundScheduleException(ErrorCode errorCode) { | ||
super(errorCode, errorCode.getMessage()); | ||
} | ||
} | ||
|