Skip to content

Commit

Permalink
[fix] Not Null 예외 메시지 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
june-777 committed Aug 15, 2024
1 parent 067236c commit 0c38588
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void validate(final Vendor owner, StoreCategory storeCategory, fin
private static void validateNotNull(Object... targets) {
for (Object target : targets) {
if (target == null) {
throw new InvalidStoreCreationException(NULL_EXIST);
throw new InvalidStoreCreationException(NULL_EXIST, "Null 값은 허용하지 않습니다.");
}
}
}
Expand Down

0 comments on commit 0c38588

Please sign in to comment.