Files
schengen-visa/SchengenVisaApi/Infrastructure/Database/GeneralExceptions/EntityNotFoundException.cs

5 lines
178 B
C#

namespace Infrastructure.Database.GeneralExceptions
{
public class EntityNotFoundException<T>(Guid id) : Exception($"Entity {typeof(T).Name} with id '{id}' not found");
}