1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-19 21:28:32 +02:00
ferret/pkg/runtime/errors.go

10 lines
124 B
Go
Raw Normal View History

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