Skip to content

Commit

Permalink
[JENKINS-17248] Robustness against NPE, unless and until root issue i…
Browse files Browse the repository at this point in the history
…s diagnosed, or people start running with patched XStream.
  • Loading branch information
jglick committed Aug 26, 2013
1 parent 2b4f1b3 commit 30198e5
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -98,6 +98,8 @@ public void reloadPlugin() {
this.plugin.load();
} catch (IOException e) {
LOGGER.log(Level.SEVERE, e.getMessage(), e);
} catch (NullPointerException x) {
LOGGER.log(Level.WARNING, "JENKINS-17248 load failure", x);
}
}

Expand Down

0 comments on commit 30198e5

Please sign in to comment.