1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/compiler/errors.go

13 lines
395 B
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package compiler
import "github.com/pkg/errors"
var (
ErrEmptyQuery = errors.New("empty query")
ErrNotImplemented = errors.New("not implemented")
ErrVariableNotFound = errors.New("variable not found")
ErrVariableNotUnique = errors.New("variable is already defined")
ErrInvalidToken = errors.New("invalid token")
ErrInvalidDataSource = errors.New("invalid data source")
)