Skip to content

Commit

Permalink
Fix error reporting (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
grafnu committed Jul 29, 2020
1 parent df39702 commit 432468e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubber/src/main/java/daq/pubber/Pubber.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Pubber(String configPath) {
try {
configuration = OBJECT_MAPPER.readValue(configFile, Configuration.class);
} catch (Exception e) {
throw new RuntimeException("While reading config " + configFile.getAbsolutePath());
throw new RuntimeException("While reading config " + configFile.getAbsolutePath(), e);
}
}

Expand Down

0 comments on commit 432468e

Please sign in to comment.