9 lines
301 B
C#
9 lines
301 B
C#
namespace EnotaryoPH.Web.Common.Exceptions
|
|
{
|
|
public class InvalidConfigurationException : Exception
|
|
{
|
|
public InvalidConfigurationException(string configurationName, object value) : base($"Invalid value '{value}' for configuration '{configurationName}'.")
|
|
{
|
|
}
|
|
}
|
|
} |