Ignore:
Timestamp:
04/29/13 10:29:06 (11 years ago)
Author:
pharms
Message:
  • corrected error handling during parsing
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDparseDirJFC.java

    r1178 r1179  
    7373            Console.traceln(Level.INFO, "Processing file: " + source); 
    7474 
    75             parser.parseFile(source); 
     75            try { 
     76                parser.parseFile(source); 
     77            } 
     78            catch (Exception e) { 
     79                Console.printerrln("Could not parse " + source + ": " + e.getMessage()); 
     80            } 
    7681        } 
    7782 
Note: See TracChangeset for help on using the changeset viewer.