From c2f6ac474d3474c6e207cccf34e4567081e663ad Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Fri, 1 Mar 2024 13:06:58 +0100 Subject: [PATCH] Correction faute Exception thematique --- .../sae/exceptions/notFound/ThematiqueNotFoundException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/exceptions/notFound/ThematiqueNotFoundException.java b/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/exceptions/notFound/ThematiqueNotFoundException.java index 61b5a7e..4c13c34 100644 --- a/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/exceptions/notFound/ThematiqueNotFoundException.java +++ b/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/exceptions/notFound/ThematiqueNotFoundException.java @@ -2,6 +2,6 @@ package fr.iut.sciencequest.sae.exceptions.notFound; public class ThematiqueNotFoundException extends EntityNotFoundException{ public ThematiqueNotFoundException(int id) { - super("Thématique", id); + super("Thematique", id); } }