10 lines
451 B
C#
10 lines
451 B
C#
|
using System.Reflection;
|
|||
|
using System;
|
|||
|
|
|||
|
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}\".") { }
|
|||
|
}
|