Skip to content

Commit

Permalink
Refactor(#21): ReviewException의 파라미터를 ServerErrorCode -> ReviewErrorC…
Browse files Browse the repository at this point in the history
…ode로 변경
  • Loading branch information
sjhjack committed Sep 22, 2024
1 parent ae5ae80 commit ec2de39
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.wypl.wyplcore.review.exception;

import com.wypl.common.exception.ServerErrorCode;
import com.wypl.common.exception.WyplException;

public class ReviewException extends WyplException {
public ReviewException(ServerErrorCode serverErrorCode) {
public ReviewException(ReviewErrorCode serverErrorCode) {
super(serverErrorCode);
}
}

0 comments on commit ec2de39

Please sign in to comment.