Fixing issues and improving coverage

This commit is contained in:
2025-03-28 23:15:53 +01:00
parent df428b9201
commit b778a357ba
4 changed files with 35 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace BasicDotnetTemplate.MainProject.Models.Api.Common.Exceptions;
public class CreateException : Exception
{
public CreateException(string message, Exception innerException)
: base(message, innerException)
{
}
}