add InvalidConfigurationException
This commit is contained in:
parent
7d82832e42
commit
5e8ccff93e
@ -0,0 +1,9 @@
|
||||
namespace EnotaryoPH.Web.Common.Exceptions
|
||||
{
|
||||
public class InvalidConfigurationException : Exception
|
||||
{
|
||||
public InvalidConfigurationException(string configurationName, object value) : base($"Invalid value '{value}' for configuration '{configurationName}'.")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
global using EnotaryoPH.Data.Constants;
|
||||
global using EnotaryoPH.Web.Common.Exceptions;
|
||||
global using EnotaryoPH.Web.Common.Extensions;
|
||||
global using EnotaryoPH.Web.Common.Helpers;
|
||||
global using EnotaryoPH.Web.Common.Services;
|
||||
|
Loading…
x
Reference in New Issue
Block a user