Ignore:
Timestamp:
06/27/13 17:13:26 (11 years ago)
Author:
pharms
Message:
  • corrected log compression and log file restructuring
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/AbstractDefaultLogParser.java

    r1232 r1234  
    205205                throw new SAXParseException("Error parsing file " + file.getName(), locator, e); 
    206206            } 
     207            catch (SAXParseException e) { 
     208                if ("XML document structures must start and end within the same entity.".equals 
     209                    (e.getMessage())) 
     210                { 
     211                    // this only denotes, that the final session tag is missing, because the 
     212                    // file wasn't completed. Ignore this. 
     213                } 
     214                else { 
     215                    throw e; 
     216                } 
     217            } 
    207218        } 
    208219    } 
Note: See TracChangeset for help on using the changeset viewer.