Spring Boot - Exception Handling
Identify the issue in this centralized error handler code snippet:
@ControllerAdvice
public class GlobalErrorHandler {
@ExceptionHandler(Exception.class)
public ResponseEntity handleException(Exception ex) {
return new ResponseEntity<>("An error occurred", HttpStatus.OK);
}
} 