Merge pull request #19424 from mfussenegger/error-msg

Complete load-settings error message
This commit is contained in:
Simon Willnauer 2016-07-13 23:59:02 +02:00 committed by GitHub
commit 2138a55eab
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class InternalSettingsPreparer {
try {
output.loadFromPath(path);
} catch (IOException e) {
throw new SettingsException("Failed to settings from " + path.toString(), e);
throw new SettingsException("Failed to load settings from " + path.toString(), e);
}
}
settingsFileFound = true;