package org.springframework.samples.mvc.exceptions; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; @ControllerAdvice public class GlobalExceptionHandler { @ExceptionHandler public @ResponseBody String handleBusinessException(BusinessException ex) { return "Handled BusinessException"; } }