package com.tasteby.config; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.RestControllerAdvice; import org.springframework.web.server.ResponseStatusException; import java.util.Map; @RestControllerAdvice public class GlobalExceptionHandler { private static final Logger log = LoggerFactory.getLogger(GlobalExceptionHandler.class); @ExceptionHandler(ResponseStatusException.class) public ResponseEntity> handleStatus(ResponseStatusException ex) { return ResponseEntity.status(ex.getStatusCode()) .body(Map.of("detail", ex.getReason() != null ? ex.getReason() : "Error")); } @ExceptionHandler(Exception.class) public ResponseEntity> handleGeneral(Exception ex) { log.error("Unhandled exception", ex); return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR) .body(Map.of("detail", "Internal server error")); } }