Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1693 from fbelzunc/runmap-retrieve
[JENKINS-27748] Improve exception management in RunMap#retrieve
  • Loading branch information
olivergondza committed May 16, 2015
2 parents 5adf5fa + 21b2859 commit c1e3a64
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/hudson/model/RunMap.java
Expand Up @@ -231,6 +231,8 @@ protected R retrieve(File d) throws IOException {
LOGGER.log(Level.WARNING, "could not load " + d, e);
} catch (InstantiationError e) {
LOGGER.log(Level.WARNING, "could not load " + d, e);
} catch (Exception e) {
LOGGER.log(Level.WARNING, "could not load " + d, e);
}
}
return null;
Expand Down

0 comments on commit c1e3a64

Please sign in to comment.