Exceptions¶
vector_search_study.exceptions ¶
Package-specific exceptions.
VectorSearchStudyError ¶
Bases: ValueError
Raised when Vector Search Study cannot complete an operation.
Source code in src/vector_search_study/exceptions.py
4 5 | |
InvalidVectorDataError ¶
Bases: VectorSearchStudyError
Raised when a corpus or query matrix violates the vector contract.
Source code in src/vector_search_study/exceptions.py
8 9 | |
InvalidSearchParameterError ¶
Bases: VectorSearchStudyError
Raised when a search parameter is outside its supported range.
Source code in src/vector_search_study/exceptions.py
12 13 | |
BackendUnavailableError ¶
Bases: VectorSearchStudyError
Raised when an optional search backend is not installed.
Source code in src/vector_search_study/exceptions.py
16 17 | |
UnsupportedObjectiveError ¶
Bases: VectorSearchStudyError
Raised when a backend cannot exactly implement a search objective.
Source code in src/vector_search_study/exceptions.py
20 21 | |