public void modifierAdresse(Client clt) throws RemoteException,
MetierException {
try {
this.fc.updateAdresse(clt);
} catch (SQLException e) {
throw new MetierException(MetierException.CONNEXION_IMPOSSIBLE);
} catch (FactoriesException e) {
/* l'erreur vient du fait que le client n'existe pas dans la base
* de donnees
*/
throw new MetierException(e.getMessage());
}
}