Package test.chat

Source Code of test.chat.TestServeurChat

package test.chat;

import java.rmi.RemoteException;

import serveur.Serveur;


public class TestServeurChat {

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

Related Classes of test.chat.TestServeurChat

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.