1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-13 00:38:12 -04:00
gitea/vendor/github.com/go-xorm/builder/error.go

10 lines
217 B
Go
Raw Normal View History

2016-11-03 18:16:01 -04:00
package builder
import "errors"
var (
ErrNotSupportType = errors.New("not supported SQL type")
ErrNoNotInConditions = errors.New("No NOT IN conditions")
ErrNoInConditions = errors.New("No IN conditions")
)