Changeset 783


Ignore:
Timestamp:
09/06/12 13:35:50 (12 years ago)
Author:
sherbold
Message:
  • improved exception handling of the JFCLogParser
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java

    r766 r783  
    226226        } 
    227227        catch (UnsupportedEncodingException e) { 
    228             // TODO handle Exception 
    229             e.printStackTrace(); 
     228            Console.printerr("Error parsing file + " + file.getName()); 
     229            Console.logException(e); 
     230            return; 
    230231        } 
    231232        catch (ParserConfigurationException e) { 
    232             // TODO handle Exception 
    233             e.printStackTrace(); 
     233            Console.printerr("Error parsing file + " + file.getName()); 
     234            Console.logException(e); 
     235            return; 
    234236        } 
    235237        catch (SAXException e) { 
    236             // TODO handle Exception 
    237             e.printStackTrace(); 
     238            Console.printerr("Error parsing file + " + file.getName()); 
     239            Console.logException(e); 
     240            return; 
    238241        } 
    239242        catch (FileNotFoundException e) { 
    240             // TODO handle Exception 
    241             e.printStackTrace(); 
     243            Console.printerr("Error parsing file + " + file.getName()); 
     244            Console.logException(e); 
     245            return; 
    242246        } 
    243247        if (inputSource != null) { 
     
    255259            } 
    256260            catch (SAXException e) { 
    257                 // TODO handle Exception 
    258                 e.printStackTrace(); 
     261                Console.printerr("Error parsing file + " + file.getName()); 
     262                Console.logException(e); 
     263                return; 
    259264            } 
    260265            catch (IOException e) { 
    261                 // TODO handle Exception 
    262                 e.printStackTrace(); 
     266                Console.printerr("Error parsing file + " + file.getName()); 
     267                Console.logException(e); 
     268                return; 
    263269            } 
    264270        } 
Note: See TracChangeset for help on using the changeset viewer.