nurse/grammar/errors.go

10 lines
284 B
Go
Raw Normal View History

2022-04-28 16:35:02 +00:00
package grammar
import "errors"
var (
ErrMissingServer = errors.New("initiator is missing a server")
ErrTypeMismatch = errors.New("param has a different type")
ErrAmbiguousParamCount = errors.New("the supplied number of arguments does not match the expected one")
)