12 references to VectorStoreException
Microsoft.Extensions.VectorData.Abstractions (10)
VectorStoreCollection.cs (7)
62/// <exception cref="VectorStoreException">The command fails to execute for any reason.</exception> 84/// <exception cref="VectorStoreException">The command fails to execute for any reason.</exception> 108/// <exception cref="VectorStoreException">The command fails to execute for any reason.</exception> 117/// <exception cref="VectorStoreException">The command fails to execute for any reason other than that the record does not exist.</exception> 136/// <exception cref="VectorStoreException">The command fails to execute for any reason other than that a record does not exist.</exception> 155/// <exception cref="VectorStoreException">The command fails to execute for any reason.</exception> 181/// <exception cref="VectorStoreException">The command fails to execute for any reason.</exception>
VectorStoreException.cs (3)
14/// Initializes a new instance of the <see cref="VectorStoreException"/> class. 21/// Initializes a new instance of the <see cref="VectorStoreException"/> class with a specified error message. 30/// Initializes a new instance of the <see cref="VectorStoreException"/> class with a specified error message and a reference to the inner exception that's the cause of this exception.
Microsoft.Extensions.VectorData.ConformanceTests (2)
FilterTests.cs (2)
137if (exception is not InvalidOperationException and not VectorStoreException { InnerException: InvalidOperationException }) 139Assert.Fail($"Expected {nameof(InvalidOperationException)} or {nameof(VectorStoreException)} but got {exception.GetType()}");