Ignore:
Timestamp:
09/20/12 12:03:03 (12 years ago)
Author:
sherbold
Message:
  • code documentation and clean-up
File:
1 edited

Legend:

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

    r774 r837  
    172172        }  
    173173        catch (UnsupportedEncodingException e) { 
    174             // TODO handle Exception 
    175             e.printStackTrace(); 
     174            Console.printerr("Error parsing file " + file.getName()); 
     175            Console.logException(e); 
    176176        } 
    177177        catch (ParserConfigurationException e) { 
    178             // TODO handle Exception 
    179             e.printStackTrace(); 
     178            Console.printerr("Error parsing file " + file.getName()); 
     179            Console.logException(e); 
    180180        } 
    181181        catch (SAXException e) { 
    182             // TODO handle Exception 
    183             e.printStackTrace(); 
     182            Console.printerr("Error parsing file " + file.getName()); 
     183            Console.logException(e); 
    184184        } 
    185185        catch (FileNotFoundException e) { 
    186             // TODO handle Exception 
    187             e.printStackTrace(); 
     186            Console.printerr("Error parsing file " + file.getName()); 
     187            Console.logException(e); 
    188188        } 
    189189         
     
    202202            } 
    203203            catch (SAXException e) { 
    204                 // TODO handle Exception 
    205                 e.printStackTrace(); 
     204                Console.printerr("Error parsing file " + file.getName()); 
     205                Console.logException(e); 
    206206            } 
    207207            catch (IOException e) { 
    208                 // TODO handle Exception 
    209                 e.printStackTrace(); 
     208                Console.printerr("Error parsing file " + file.getName()); 
     209                Console.logException(e); 
    210210            } 
    211211        } 
Note: See TracChangeset for help on using the changeset viewer.