Changeset 783 for trunk/quest-plugin-jfc/src/main
- Timestamp:
- 09/06/12 13:35:50 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
r766 r783 226 226 } 227 227 catch (UnsupportedEncodingException e) { 228 // TODO handle Exception 229 e.printStackTrace(); 228 Console.printerr("Error parsing file + " + file.getName()); 229 Console.logException(e); 230 return; 230 231 } 231 232 catch (ParserConfigurationException e) { 232 // TODO handle Exception 233 e.printStackTrace(); 233 Console.printerr("Error parsing file + " + file.getName()); 234 Console.logException(e); 235 return; 234 236 } 235 237 catch (SAXException e) { 236 // TODO handle Exception 237 e.printStackTrace(); 238 Console.printerr("Error parsing file + " + file.getName()); 239 Console.logException(e); 240 return; 238 241 } 239 242 catch (FileNotFoundException e) { 240 // TODO handle Exception 241 e.printStackTrace(); 243 Console.printerr("Error parsing file + " + file.getName()); 244 Console.logException(e); 245 return; 242 246 } 243 247 if (inputSource != null) { … … 255 259 } 256 260 catch (SAXException e) { 257 // TODO handle Exception 258 e.printStackTrace(); 261 Console.printerr("Error parsing file + " + file.getName()); 262 Console.logException(e); 263 return; 259 264 } 260 265 catch (IOException e) { 261 // TODO handle Exception 262 e.printStackTrace(); 266 Console.printerr("Error parsing file + " + file.getName()); 267 Console.logException(e); 268 return; 263 269 } 264 270 }
Note: See TracChangeset
for help on using the changeset viewer.