~ubuntu-branches/debian/sid/golang-github-go-xorm-builder/sid

« back to all changes in this revision

Viewing changes to error.go

  • Committer: Package Import Robot
  • Author(s): Michael Lustfield
  • Date: 2017-03-12 03:54:03 UTC
  • Revision ID: package-import@ubuntu.com-20170312035403-csl9031z2j2aswfd
Tags: upstream-0.0~git20170224.0.c6e604e
ImportĀ upstreamĀ versionĀ 0.0~git20170224.0.c6e604e

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2016 The Xorm Authors. All rights reserved.
 
2
// Use of this source code is governed by a BSD-style
 
3
// license that can be found in the LICENSE file.
 
4
 
 
5
package builder
 
6
 
 
7
import "errors"
 
8
 
 
9
var (
 
10
        // ErrNotSupportType not supported SQL type error
 
11
        ErrNotSupportType = errors.New("not supported SQL type")
 
12
        // ErrNoNotInConditions no NOT IN params error
 
13
        ErrNoNotInConditions = errors.New("No NOT IN conditions")
 
14
        // ErrNoInConditions no IN params error
 
15
        ErrNoInConditions = errors.New("No IN conditions")
 
16
)