[HTTP] illegalStateException 사용시 응답은 어떤식으로 던져질까?
도입컨트롤러 테스트 코드 작성시 illegalStateException 을 던졌다.하지만, 응답으로 badRequest.. internalServerError 등으로 응답을 받으려고해봤는데 도무지 받아지지 않았다.// when + then doThrow(new IllegalStateException("cart product delete is failed")) .when(cartService) .removeCart(mock);org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: cart product delete is fai..