Create file:

// this apply to all the controllers
@ControllerAdvice
public class ApplicationExceptionHandler {
    
    @ExceptionHandler(ApplicationException.class)
    public String handleException() {
        System.out.println("in global exception handler");
        return "error";
    }
}