TD2: Be more informative at exception catching.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 13 Mar 2018 23:54:41 +0000 (00:54 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 13 Mar 2018 23:54:41 +0000 (00:54 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TD2/client/ClientSimplifie.java
TD2/client/SocketClient.java
TD2/client/ThreadClientSend.java
TD2/client/ThreadClientoSend.java

index b676c6591c1647a8c736444e0783b12fdfff05a1..1701ecd6e04abdeb41b87e7db8516152c2f30d18 100644 (file)
@@ -16,6 +16,7 @@ public class ClientSimplifie {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
             closeRWIO();
         }
     }
@@ -29,6 +30,7 @@ public class ClientSimplifie {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
             closeRWIO();
         }
     }
@@ -87,6 +89,7 @@ public class ClientSimplifie {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
         }
     }
 
index 3c6d021c605f3a22a7d9537d8f1bf830a28854f7..75c04703064caf9ff2ecc9a8ea5c958b84708993 100644 (file)
@@ -18,6 +18,7 @@ public class SocketClient {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
             closeRWIO();
         }
     }
@@ -31,6 +32,7 @@ public class SocketClient {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
             closeRWIO();
         }
     }
@@ -115,6 +117,7 @@ public class SocketClient {
         }
         catch (IOException e) {
             System.err.println("IOException: " + e);
+            e.printStackTrace();
         }
     }
 
index 33a8461966597c496f7d718c7bd1ae282cbbdb6c..399cfd3139f819247e3a301fe9c88a52b0ed9724 100644 (file)
@@ -32,6 +32,7 @@ public class ThreadClientSend implements Runnable {
                 }
                 catch (IOException e) {
                     System.err.println("IOException: " + e);
+                    e.printStackTrace();
                 }
             }
         }
index dd8d03b65a1679e2745a5974164fb0248dfadc87..d6462a7c2a3b540f64bedd136bdd879d8250aa75 100644 (file)
@@ -55,6 +55,7 @@ public class ThreadClientoSend implements Runnable {
                 }
                 catch (IOException e) {
                     System.err.println("IOException: " + e);
+                    e.printStackTrace();
                 }
             }
         }