mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
13 lines
395 B
Go
13 lines
395 B
Go
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")
|
|
)
|