Package test.serveur

Source Code of test.serveur.TestServeur

package test.serveur;

import java.rmi.RemoteException;

import serveur.Serveur;

public class TestServeur {

  public static void main(String[] args) {
    try {
      new Serveur();
    } catch (RemoteException e) {
      System.err.println("Une erreur est survenue durant la création du serveur : RemoteException");
      System.exit(1);
    }
  }
 
}
TOP

Related Classes of test.serveur.TestServeur

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.