This commit is contained in:
Arseniy Tashoyan 2026-07-29 10:24:40 +08:00 committed by GitHub
commit 9bc9e9c233
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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);
}
}