ExceptionHandler 만들기 서비스 로직을 들어가기 전에 회원이 정보가 유효하지 않을 때 예외를 터뜨린다. methodArgumentNotValidHandlerCustomException() MethodArgumentNotValidException를 처리해주는 핸들러가 있어야한다. 이를 만들어주지 않으면? 에러의 메시지가 다음과 같이 제대로 안 나온다. @Slf4j @RestControllerAdvice public class CustomExceptionHandler { @ExceptionHandler(MemberException.class) protected ResponseEntity memberHandlerCustomException( MemberException e) { MemberErro..