mise a jour fichier sana

This commit is contained in:
AlineRinquin 2022-02-24 13:35:05 +01:00
parent bb5cd4b57b
commit 45cecb0079

View File

@ -160,7 +160,7 @@ public class MembreController {
membreRepo.deleteById(id);
return ResponseEntity.status(HttpStatus.OK).body("Membre supprimé !");
} catch (Exception e) {
MembreNotFoundException membreNotFoundException = new membreNotFoundException(id);
MembreNotFoundException membreNotFoundException = new MembreNotFoundException(id);
return ResponseEntity.status(HttpStatus.NOT_FOUND).body(membreNotFoundException.getMessage());
}
}