Skip to content
Snippets Groups Projects
Commit 8d0dd498 authored by Vincent Massol's avatar Vincent Massol
Browse files

[Misc] Add missing exception

parent 3d0b6ec9
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,8 @@ private XWikiDocument getDocument(String wikiId) throws WikiUserManagerException
return xwiki.getDocument(reference, context);
} catch (XWikiException e) {
throw new WikiUserManagerException(String.format("Fail to get the configuration document for wiki [%s].",
wikiId));
throw new WikiUserManagerException(String.format("Failed to get the configuration document for wiki [%s]",
wikiId), e);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment