Skip to content
Snippets Groups Projects
Commit 0163676f authored by dmyur's avatar dmyur
Browse files

Deleted YURKOVICH HW2 that was in the wrong folder

parent a6a662c0
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,11 @@ public class YURKOVICH_TcpExample1Telnet
}
catch(IOException e)
{
System.out.println("problem with networking: " + e);
System.out.println("Problem with TcpExample1Telnet networking:"); // describe what is happening
System.out.println("Error: " + e);
// Provide more helpful information to user if exception occurs due to running twice at one time
if (e instanceof java.net.BindException)
System.out.println("*** Be sure to stop any other running instances of programs using this port!");
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment