mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
9 lines
211 B
Go
9 lines
211 B
Go
package errors
|
|
|
|
func NewNodeError(msg string) (err error) {
|
|
return NewError(ErrorPrefixNode, msg)
|
|
}
|
|
|
|
var ErrorNodeUnregistered = NewNodeError("unregistered")
|
|
var ErrorNodeNotExists = NewNodeError("not exists")
|