Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE/HOTFIX] AOS 요청 사항 반영 (예외 메시지 수정) #630

Merged
merged 5 commits into from
Jan 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ public class ValidationMessage {

public static final String INVALID_EMAIL = "이메일 형식이 올바르지 않습니다.";

public static final String INVALID_PASSWORD =
"비밀번호 형식이 올바르지 않습니다. 비밀번호는 최소 6글자 이상이며, 영어와 특수문자를 포함해야 합니다.";
public static final String INVALID_PASSWORD = "비밀번호 형식이 올바르지 않습니다.";

public static final String NOT_NULL = "입력해 주세요.";
public static final String NOT_EMPTY = "입력해 주세요.";
Expand Down