Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 782)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 783)
@@ -226,18 +226,22 @@
         }
         catch (UnsupportedEncodingException e) {
-            // TODO handle Exception
-            e.printStackTrace();
+            Console.printerr("Error parsing file + " + file.getName());
+            Console.logException(e);
+            return;
         }
         catch (ParserConfigurationException e) {
-            // TODO handle Exception
-            e.printStackTrace();
+            Console.printerr("Error parsing file + " + file.getName());
+            Console.logException(e);
+            return;
         }
         catch (SAXException e) {
-            // TODO handle Exception
-            e.printStackTrace();
+            Console.printerr("Error parsing file + " + file.getName());
+            Console.logException(e);
+            return;
         }
         catch (FileNotFoundException e) {
-            // TODO handle Exception
-            e.printStackTrace();
+            Console.printerr("Error parsing file + " + file.getName());
+            Console.logException(e);
+            return;
         }
         if (inputSource != null) {
@@ -255,10 +259,12 @@
             }
             catch (SAXException e) {
-                // TODO handle Exception
-                e.printStackTrace();
+                Console.printerr("Error parsing file + " + file.getName());
+                Console.logException(e);
+                return;
             }
             catch (IOException e) {
-                // TODO handle Exception
-                e.printStackTrace();
+                Console.printerr("Error parsing file + " + file.getName());
+                Console.logException(e);
+                return;
             }
         }
