infrastructure DI

This commit is contained in:
2026-02-05 20:53:24 +01:00
parent 50e87335f4
commit adf6cac49a
6 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace AipsCore.Infrastructure.DI.Configuration;
public class ConfigurationException : Exception
{
public ConfigurationException(string key)
: base($"Env configuration error, key '{key}' not set.")
{
}
}