Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

/*
* Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
*/
package opengrok.auth.plugin;

Expand Down Expand Up @@ -133,7 +133,8 @@ public void load(Map<String, Object> parameters) {
cfg = getConfiguration(configurationPath);
ldapProvider = new LdapFacade(cfg);
} catch (IOException ex) {
throw new IllegalArgumentException("Unable to read the configuration", ex);
throw new IllegalArgumentException(
String.format("Unable to read the configuration from '%s'", configurationPath), ex);
}
}

Expand Down
Loading