fixed Error when IndexOutOfBoundsException in setDateofBirtch in Player.java

This commit is contained in:
schrom01 2022-05-12 23:21:17 +02:00
parent ddfbb9bbd0
commit 280d2ebda3
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class Player extends Person implements Participant{
String[] date = dateOfBirth.split("\\.");
try{
this.dateOfBirth = LocalDate.of(Integer.valueOf(date[2]), Integer.valueOf(date[1]), Integer.valueOf(date[0]));
} catch (NumberFormatException e) {
} catch (NumberFormatException | IndexOutOfBoundsException e) {
e.printStackTrace();
throw new InvalidDateException("Date invalid");
}