9 lines
208 B
Go
9 lines
208 B
Go
|
package cluster
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrFeatureNotExist = errors.New("No nodes in nodepool match the feature specificed")
|
||
|
ErrIlegalPath = errors.New("path out of boundary of setting temp folder")
|
||
|
)
|