diff --git a/SqlData/Application/Common/Exceptions/NotFoundException.cs b/SqlData/Application/Common/Exceptions/NotFoundException.cs index c310b74..419c2ad 100644 --- a/SqlData/Application/Common/Exceptions/NotFoundException.cs +++ b/SqlData/Application/Common/Exceptions/NotFoundException.cs @@ -5,6 +5,6 @@ namespace Mirea.Api.DataAccess.Application.Common.Exceptions; public class NotFoundException : Exception { - public NotFoundException(MemberInfo entity, string name, object id) : base($"The entity \"{entity.Name}\" property \"{name}\" was not found by id \"{id}\".") { } - public NotFoundException(MemberInfo entity, object id) : base($"The entity \"{entity.Name}\" was not found by id \"{id}\".") { } + public NotFoundException(MemberInfo entity, string name, object id) : base($"The entity \"{entity.Name}\" property \"{name}\" was not found by \"{id}\".") { } + public NotFoundException(MemberInfo entity, object id) : base($"The entity \"{entity.Name}\" was not found by \"{id}\".") { } } \ No newline at end of file