2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Core.Exceptions
|
2025-01-03 16:21:03 +00:00
|
|
|
|
{
|
2025-02-20 00:23:13 +01:00
|
|
|
|
internal class ConfigurationException : Exception
|
|
|
|
|
|
{
|
|
|
|
|
|
public ConfigurationException(string message) : base(message)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-01-03 16:21:03 +00:00
|
|
|
|
}
|