meilisearch.NET/meilisearch.NET/Exceptions/IndexAlreadyExistsException.cs

12 lines
310 B
C#
Raw Normal View History

2025-03-01 14:09:25 -05:00
namespace meilisearch.NET.Exceptions;
public class IndexAlreadyExistsException : IndexManagementException
{
public string IndexName { get; }
public IndexAlreadyExistsException(string indexName)
: base($"Index '{indexName}' already exists")
{
IndexName = indexName;
}
}