using System; using System.Reflection; namespace Mirea.Api.DataAccess.Application.Common.Exceptions; public class RecordExistException(MemberInfo entity, string name, object id) : Exception($"The entity \"{entity.Name}\" property \"{name}\" exists with id \"{id}\".");