* @throws PlaceInexistanteException Au cas ou la Place n'existe pas dans cette zone
*/
public void removePlace(Zone z, Fauteuil f)
throws PlaceInexistanteException{
if( !z.removePlace(f.getRangee(), f.getNumero()) )
throw new PlaceInexistanteException();
}