Skip to content

Commit

Permalink
[SIX-HOTFIX] fix : EntityNotFoundException 이 BusinessException 상속
Browse files Browse the repository at this point in the history
  • Loading branch information
legowww committed Nov 29, 2023
1 parent b500ba7 commit 1152ad7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import com.sixheroes.onedayherocommon.error.ErrorCode;
import lombok.Getter;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
@Getter
public class EntityNotFoundException extends RuntimeException {
public class EntityNotFoundException extends BusinessException {

private final ErrorCode errorCode;
public EntityNotFoundException(ErrorCode errorCode) {
super(errorCode);
}
}

0 comments on commit 1152ad7

Please sign in to comment.