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 @@ -103,7 +103,11 @@ public void installFeatureConfigs(Feature feature) throws IOException, InvalidSy
// trim lines
String val = config.getValue();
if (config.isExternal()) {
props.load(new URL(val));
try {
props.load(new URL(val));
} catch (java.net.MalformedURLException e) {
throw new IOException("Failed to load config info from URL [" + val + "] for feature [" + feature.getName() + "/" + feature.getVersion() + "].");
}
} else {
props.load(new StringReader(val));
}
Expand Down