1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-21 01:21:34 +02:00
ferret/pkg/runtime/errors.go

11 lines
179 B
Go
Raw Normal View History

2019-10-11 23:31:23 +02:00
package runtime
import (
"github.com/pkg/errors"
)
var (
ErrMissedParams = errors.New("missed parameter values")
ErrMissedParam = errors.New("missed value for parameter")
)