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;
|
|||
|
}
|
|||
|
}
|