1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

dstore - need to exit with a message if port already in use

This commit is contained in:
David McKnight 2007-11-29 14:44:48 +00:00
parent 16e20b8830
commit 1aa4c0a448

View file

@ -569,6 +569,8 @@ public class ServerLauncher extends Thread {
} catch (Exception e) {
// don't display exceptions 193426
//e.printStackTrace();
System.err.println(e.getMessage());
System.exit(-1);
}
} else {
_serverSocket = new ServerSocket(port);