From a6ab09540a48902f17f9a69c2c29e8dabfcb67bf Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 3 May 2024 02:59:22 +0900 Subject: [PATCH] =?UTF-8?q?:art:=20CHORE.=20=EC=82=AC=EC=9A=A9=EC=9E=90=20?= =?UTF-8?q?=EC=9D=8C=EC=84=B1=20=EC=A1=B0=ED=9A=8C=20=EC=98=88=EC=99=B8=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/voice/exception/VoiceNotFoundException.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main/java/fairytale/tbd/domain/voice/exception/VoiceNotFoundException.java diff --git a/src/main/java/fairytale/tbd/domain/voice/exception/VoiceNotFoundException.java b/src/main/java/fairytale/tbd/domain/voice/exception/VoiceNotFoundException.java new file mode 100644 index 0000000..3844c71 --- /dev/null +++ b/src/main/java/fairytale/tbd/domain/voice/exception/VoiceNotFoundException.java @@ -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); + } +}