Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import hudson.model.AbstractBuild;
import hudson.scm.ChangeLogParser;
import hudson.util.Digester2;
import hudson.util.IOException2;
import org.apache.commons.digester.Digester;
import org.xml.sax.SAXException;

Expand All @@ -26,9 +25,9 @@ public JazzChangeSetList parse(AbstractBuild build, File changelogFile) throws I
try {
digester.parse(changelogFile);
} catch (IOException e) {
throw new IOException2("Failed to parse " + changelogFile, e);
throw new IOException("Failed to parse " + changelogFile, e);
} catch (SAXException e) {
throw new IOException2("Failed to parse " + changelogFile, e);
throw new IOException("Failed to parse " + changelogFile, e);
}
return new JazzChangeSetList(build, result);
}
Expand Down