Compare commits

...

2 Commits

1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ public class YamlConfigurationLoader implements ConfigurationLoader
}
catch (YAMLException e)
{
throw new ConfigurationException("Invalid yaml: " + url, e);
String msg = "Failed to load configuration from " + url;
throw new ConfigurationException(msg, e);
}
}