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

#61 Refactor: 각 도메인 별 exception에 에러 코드 수정 #64

Conversation

jj0526
Copy link
Collaborator

@jj0526 jj0526 commented Oct 26, 2024

PR 내용


PR 세부사항

  • 각 도메인 별 exception에 에러 코드 추가
  • 유저 도메인 exception 테스트
    • 기수 입력 안됨 : 아예 입력하지 않은 경우는 bindException가 발생
    • 존재하지 않는 학과
    • 이미 존재하는 학번
    • 이미 존재하는 전화번호
    • 존재하지 않는 유저
    • 생성한 사용자와 일치하지 않음(userId)
  • account 도메인 exception 테스트
    • 이미 존재하는 장부
    • 존재하지 않는 장부
    • 존재하지 않는 내역
  • attendance 도메인 exception 테스트
    • 출석 코드 불일치
    • 존재하지 않는 출석 정보
  • board 도메인 exception 테스트
    • 존재하지 않는 공지사항
    • 존재하지 않는 게시물
  • comment 도메인 exception 테스트
    • 존재하지 않는 댓글
  • penalty 도메인 exception 테스트
    • 존재하지 않는 패널티
  • schedule 도메인 exception 테스트
    • 존재하지 않는 일정
    • 존재하지 않는 정기 모임

체크 리스트

  • 리뷰어 설정
  • Assignee 설정
  • Label 설정
  • 제목 양식 맞췄나요? (ex. #0 Feat: 기능 추가)
  • 변경 사항에 대한 테스트

@jj0526 jj0526 self-assigned this Oct 26, 2024
@jj0526 jj0526 linked an issue Oct 26, 2024 that may be closed by this pull request
8 tasks

public class AccountNotFoundException extends EntityNotFoundException {
public AccountNotFoundException() {super("존재하지 않는 장부입니다.");}
public class AccountNotFoundException extends BusinessLogicException {
Copy link
Member

@hyxklee hyxklee Oct 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NotFound에 해당하는 예외 코드는 404라서 존재하지 않는 객체 예외는 모두 코드를 404로 변경 부탁드려요!

Copy link
Member

@hyxklee hyxklee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨어요!

@jj0526 jj0526 merged commit bf46e00 into develop Oct 26, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Refactor #61 각 도메인 별 exception에 에러 코드 추가
2 participants