Ajout constructeur par défaut à MalformedPartyException

Springboot
Alix JEUDI--LEMOINE 1 year ago
parent 1ae0bc940f
commit 43b077c6f5

@ -8,4 +8,7 @@ public class MalformedPartyException extends RuntimeException {
public MalformedPartyException(String message) {
super(message);
}
public MalformedPartyException() {
super("Error while creating party");
}
}

Loading…
Cancel
Save