From 263420933dff135b2bbf1afe51074b40ceef38f9 Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@nps.edu>
Date: Mon, 5 Feb 2018 11:08:00 -0800
Subject: [PATCH] report exception in error message

---
 projects/TcpExample2/src/tcpexample2/TcpExample2.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projects/TcpExample2/src/tcpexample2/TcpExample2.java b/projects/TcpExample2/src/tcpexample2/TcpExample2.java
index 9b69ca5262..74bd756619 100644
--- a/projects/TcpExample2/src/tcpexample2/TcpExample2.java
+++ b/projects/TcpExample2/src/tcpexample2/TcpExample2.java
@@ -76,7 +76,7 @@ public class TcpExample2
        }
         catch(Exception e)
         {
-            System.out.println("problem with networking");
+            System.out.println("problem with networking: " + e);
         }
        
     }
-- 
GitLab