Skip to content

Commit

Permalink
🎨 CHORE. 사용자 음성 조회 예외 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed May 2, 2024
1 parent 3eaf059 commit a6ab095
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package fairytale.tbd.domain.voice.exception;

import fairytale.tbd.global.enums.statuscode.BaseCode;
import fairytale.tbd.global.exception.GeneralException;

public class VoiceNotFoundException extends GeneralException {
public VoiceNotFoundException(BaseCode errorStatus) {
super(errorStatus);
}
}

0 comments on commit a6ab095

Please sign in to comment.