This commit is contained in:
Arseniy Tashoyan 2026-08-01 14:17:14 +03:00 committed by GitHub
commit aa4b269028
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) catch (YAMLException e)
{ {
throw new ConfigurationException("Invalid yaml: " + url, e); String msg = "Failed to load configuration from " + url;
throw new ConfigurationException(msg, e);
} }
} }