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

10 lines
124 B
Go
Raw Normal View History

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