Skip to content

Commit

Permalink
Refactor: FaqBaseException constructor 매개변수 타입 구체화
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonseon12 committed Feb 6, 2024
1 parent 5bfa0f3 commit 8265569
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public FaqErrorCode.FaqBaseException throwException() {
}

public class FaqBaseException extends ApiException {
public FaqBaseException(ErrorCode errorCode) {
super(errorCode);
public FaqBaseException(FaqErrorCode faqErrorCode) {
super(faqErrorCode);
}
}

Expand Down

0 comments on commit 8265569

Please sign in to comment.