Modify QuizException to RuntimeException

This commit is contained in:
MangKyu
2022-01-06 14:14:08 +09:00
parent b329be869a
commit 253e2ec57d

View File

@@ -7,7 +7,7 @@ import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
public class QuizException extends Exception {
public class QuizException extends RuntimeException {
private final ErrorCode errorCode;