스프링 부트에서 JSON에서 예외를 다시 던지는 방법 요청 매핑이 있습니다. @RequestMapping("/fetchErrorMessages") public @ResponseBody int fetchErrorMessages(@RequestParam("startTime") String startTime,@RequestParam("endTime") String endTime) throws Exception { if(SanityChecker.checkDateSanity(startTime)&&SanityChecker.checkDateSanity(endTime)) { return 0; } else { throw new NotFoundException("Datetime is invalid"); } } startT..