Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-38647] add vault path to exception message
  • Loading branch information
Peter Tierno committed May 22, 2017
1 parent 3bc9180 commit a22fa96
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ public Map<String, String> read(String path) {
try {
return vault.logical().read(path).getData();
} catch (VaultException e) {
throw new VaultPluginException("could not read from vault", e);
throw new VaultPluginException("could not read from vault: " + e.getMessage() + " at path: " + path, e);
}
}
}

0 comments on commit a22fa96

Please sign in to comment.