mirror of https://github.com/milvus-io/milvus.git
15 lines
368 B
Go
15 lines
368 B
Go
package meta
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// Read errors
|
|
ErrCollectionNotFound = errors.New("CollectionNotFound")
|
|
ErrPartitionNotFound = errors.New("PartitionNotFound")
|
|
ErrReplicaNotFound = errors.New("ReplicaNotFound")
|
|
|
|
// Store errors
|
|
ErrStoreCollectionFailed = errors.New("StoreCollectionFailed")
|
|
ErrStoreReplicaFailed = errors.New("StoreReplicaFailed")
|
|
)
|