Some checks failed
build-packages / meilisearch-dotnet-packages (push) Has been cancelled
12 lines
310 B
C#
12 lines
310 B
C#
namespace meilisearch.NET.Exceptions;
|
|
|
|
public class IndexAlreadyExistsException : IndexManagementException
|
|
{
|
|
public string IndexName { get; }
|
|
|
|
public IndexAlreadyExistsException(string indexName)
|
|
: base($"Index '{indexName}' already exists")
|
|
{
|
|
IndexName = indexName;
|
|
}
|
|
} |