1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-07 00:56:53 +02:00
Files
ferret/pkg/runtime/errors.go

11 lines
179 B
Go
Raw Normal View History

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