mirror of https://github.com/milvus-io/milvus.git
13 lines
252 B
Go
13 lines
252 B
Go
|
package job
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// Common errors
|
||
|
ErrInvalidRequest = errors.New("InvalidRequest")
|
||
|
|
||
|
// Load errors
|
||
|
ErrCollectionLoaded = errors.New("CollectionLoaded")
|
||
|
ErrLoadParameterMismatched = errors.New("LoadParameterMismatched")
|
||
|
)
|