Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xwiki-platform
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XWiki
xwiki-platform
Commits
8d0dd498
Commit
8d0dd498
authored
2 years ago
by
Vincent Massol
Browse files
Options
Downloads
Patches
Plain Diff
[Misc] Add missing exception
parent
3d0b6ec9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xwiki-platform-core/xwiki-platform-wiki/xwiki-platform-wiki-user/xwiki-platform-wiki-user-default/src/main/java/org/xwiki/wiki/user/internal/DefaultWikiUserConfigurationHelper.java
+2
-2
2 additions, 2 deletions
...iki/user/internal/DefaultWikiUserConfigurationHelper.java
with
2 additions
and
2 deletions
xwiki-platform-core/xwiki-platform-wiki/xwiki-platform-wiki-user/xwiki-platform-wiki-user-default/src/main/java/org/xwiki/wiki/user/internal/DefaultWikiUserConfigurationHelper.java
+
2
−
2
View file @
8d0dd498
...
...
@@ -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
(
"Fail
ed
to get the configuration document for wiki [%s]"
,
wikiId
)
,
e
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment