Skip to content

Commit

Permalink
Merge pull request #124 from TeamPINGLE/fix/123
Browse files Browse the repository at this point in the history
[fix] change exception message
  • Loading branch information
Parkjyun authored Mar 6, 2024
2 parents 194785e + cb028a9 commit 874469e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public enum ErrorMessage {
RESOURCE_NOT_FOUND(HttpStatus.NOT_FOUND, "해당 리소스가 존재하지 않습니다."),
USER_NOT_FOUND(HttpStatus.NOT_FOUND, "사용자를 찾을 수 없습니다."),
NOT_FOUND_END_POINT(HttpStatus.NOT_FOUND, "존재하지 않는 API입니다."),
MEETING_NOT_FOUND(HttpStatus.NOT_FOUND, "존재하지 않는 번개입니다"),
// Method Not Allowed Error 405
METHOD_NOT_ALLOWED(HttpStatus.METHOD_NOT_ALLOWED, "지원하지 않는 메소드입니다."),
// Conflict Error 409
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void verifyUser(Long userId, Long groupId) {

@Transactional
public Long participateMeeting(Long userId, Long meetingId) {
Meeting meeting = meetingRepository.findById(meetingId).orElseThrow(() -> new CustomException(ErrorMessage.RESOURCE_NOT_FOUND));
Meeting meeting = meetingRepository.findById(meetingId).orElseThrow(() -> new CustomException(ErrorMessage.MEETING_NOT_FOUND));
if(isParticipating(userId, meeting))
throw new CustomException(ErrorMessage.RESOURCE_CONFLICT);
if((getCurParticipants(meeting)) >= meeting.getMaxParticipants())
Expand Down

0 comments on commit 874469e

Please sign in to comment.