154155156157158159160161
private static String readGivenName(String fullName, String familyName) { try { return fullName.substring(0, fullName.indexOf(familyName)).trim(); } catch (StringIndexOutOfBoundsException e) { throw new GivenNameMismatchException(); } }