Skip to content

Commit b042fe5

Browse files
committed
Refactor(#5): 에러 메시지 수정
Resolvers: #5
1 parent 4d429ee commit b042fe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

domain/jpa-core/src/main/java/com/wypl/jpacore/JpaErrorCode.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
@Getter
88
public enum JpaErrorCode implements ServerErrorCode {
9-
ALREADY_DELETED_ENTITY(400, "JPA_001", "이미 삭제된 요소는 삭제할 수 없습니다."),
10-
NON_DELETED_ENTITY(400, "JPA_002", "삭제되지 않은 요소는 복구할 수 없습니다.");
9+
ALREADY_DELETED_ENTITY(400, "JPA_001", "이미 삭제된 데이터입니다"),
10+
NON_DELETED_ENTITY(400, "JPA_002", "삭제되지 않은 데이터는 복구할 수 없습니다.");
1111
private final int statusCode;
1212
private final String errorCode;
1313
private final String message;

0 commit comments

Comments
 (0)