crud/security
Victor GABORIT 1 year ago
parent 384ae84ca1
commit d810a4ba40

@ -0,0 +1,10 @@
namespace Utils
{
public class NoDataFoundException : Exception
{
public NoDataFoundException() : base("Aucune donnée trouver")
{
}
}
}

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
Loading…
Cancel
Save