TD2: Be more informative at exception catching.
[TD_SR.git] / TD2 / client / ClientSimplifie.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();
         }
     }