Skip to content

Commit

Permalink
Fix [#10] 에러 메세지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed May 18, 2024
1 parent 655be24 commit bc4f323
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void createResume(
ResumeCreateRequest resumeCreateRequest
) {
User findUser = userRepository.findById(resumeCreateRequest.userId()).orElseThrow(
() -> new BusinessException(ErrorMessage.SEARCH_FAILED)
() -> new BusinessException(ErrorMessage.USER_NOT_FOUND_BY_ID_EXCEPTION)
);
Resume resume = Resume.create(findUser, resumeCreateRequest.title());
resumeRepository.save(resume);
Expand Down

0 comments on commit bc4f323

Please sign in to comment.