diff --git a/assignments/src/MV3500Cohort2019JulySeptember/homework1/YURKOVICH_TcpExample1Telnet.java b/assignments/src/MV3500Cohort2019JulySeptember/homework1/YURKOVICH_TcpExample1Telnet.java
index 46f084a5d52b3cee0ede3285a33cdb5cc1cb4dea..ed463f87fc82c8efccee0d8e713455e6ce230dd3 100644
--- a/assignments/src/MV3500Cohort2019JulySeptember/homework1/YURKOVICH_TcpExample1Telnet.java
+++ b/assignments/src/MV3500Cohort2019JulySeptember/homework1/YURKOVICH_TcpExample1Telnet.java
@@ -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!");
         }
     }
 }