MireaBackend/Application/Common/Exceptions/RecordExistException.cs

6 lines
272 B
C#
Raw Normal View History

2024-01-16 12:50:20 +03:00
using System;
using System.Reflection;
namespace Mirea.Api.DataAccess.Application.Common.Exceptions;
public class RecordExistException(MemberInfo entity, string name, object id) : Exception($"Entity \"{entity.Name}\" with \"{name}\" already exist with id \"{id}\".");