From 611abe1b7fb04a90be8fc75dead87b7b008869b0 Mon Sep 17 00:00:00 2001 From: hyxklee Date: Fri, 8 Nov 2024 10:53:28 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=98=88=EC=99=B8=20=EC=83=81=EC=88=98?= =?UTF-8?q?=20=EB=A9=94=EC=8B=9C=EC=A7=80=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../X/domain/image/exception/ErrorMessage.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main/java/com/leets/X/domain/image/exception/ErrorMessage.java diff --git a/src/main/java/com/leets/X/domain/image/exception/ErrorMessage.java b/src/main/java/com/leets/X/domain/image/exception/ErrorMessage.java new file mode 100644 index 0000000..5847ef4 --- /dev/null +++ b/src/main/java/com/leets/X/domain/image/exception/ErrorMessage.java @@ -0,0 +1,15 @@ +package com.leets.X.domain.image.exception; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@Getter +@AllArgsConstructor +public enum ErrorMessage { + + S3_UPLOAD_FAIL(500, "이미지 업로드 중 에러가 발생했습니다."); + + private final int code; + private final String message; + +}