HashMap<String,Profil> profils = Serialiser.deserialiser(Constantes.PROFIL);
// S'il manque une information au nouveau profil ou que le pseudo entré n'est lié à aucun profil
// On lève une Exception
if (profils.get(pseudo) == null)
throw new ProfilException(ProfilException.INVALID_USERNAME);
else if (profil.getPseudo() == null)
throw new ProfilException(ProfilException.MISSING_USERNAME);
else if (profil.getPassword() == null)
throw new ProfilException(ProfilException.MISSING_PASSWORD);
else if (profil.getNom() == null)
throw new ProfilException(ProfilException.MISSING_NOM);
else if (profil.getPrenom() == null)
throw new ProfilException(ProfilException.MISSING_PRENOM);
else if (profil.getSexe() == null)
throw new ProfilException(ProfilException.MISSING_SEXE);
// Modification du profil
profils.put(profil.getPseudo(), profil);
// Enregistrement de la nouvelle liste