Skip to content

Commit

Permalink
refactor: 사용하지 않는 예외 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
skylar1220 committed Oct 27, 2024
1 parent 23da7c9 commit 40143ac
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 45 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package reviewme.review.service.exception;

import java.util.Collection;
import java.util.List;
import lombok.extern.slf4j.Slf4j;
import reviewme.global.exception.BadRequestException;

Expand All @@ -16,9 +15,4 @@ public SubmittedQuestionAndProvidedQuestionMismatchException(Collection<Long> su
submittedQuestionIds, providedQuestionIds, this
);
}

public SubmittedQuestionAndProvidedQuestionMismatchException(long submittedQuestionId,
Collection<Long> providedQuestionIds) {
this(List.of(submittedQuestionId), providedQuestionIds);
}
}

0 comments on commit 40143ac

Please sign in to comment.