From 6920bd4cf79ea91aef4cf2a21310d0ac13fbec5c Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Wed, 24 Jan 2018 08:11:47 -0800 Subject: [PATCH] display exception on console --- projects/TcpExample1/src/tcpexample1/TcpExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/TcpExample1/src/tcpexample1/TcpExample.java b/projects/TcpExample1/src/tcpexample1/TcpExample.java index 18489c61d1..410d2e0218 100644 --- a/projects/TcpExample1/src/tcpexample1/TcpExample.java +++ b/projects/TcpExample1/src/tcpexample1/TcpExample.java @@ -58,7 +58,7 @@ public class TcpExample } catch(Exception e) { - System.out.println("problem with networking"); + System.out.println("problem with networking: " + e); } -- GitLab