2016-11-03 18:16:01 -04:00
|
|
|
// Copyright 2015 The Xorm Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package xorm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-01-03 03:20:28 -05:00
|
|
|
// ErrParamsType params error
|
|
|
|
ErrParamsType = errors.New("Params type error")
|
|
|
|
// ErrTableNotFound table not found error
|
|
|
|
ErrTableNotFound = errors.New("Not found table")
|
|
|
|
// ErrUnSupportedType unsupported error
|
|
|
|
ErrUnSupportedType = errors.New("Unsupported type error")
|
|
|
|
// ErrNotExist record is not exist error
|
|
|
|
ErrNotExist = errors.New("Not exist error")
|
|
|
|
// ErrCacheFailed cache failed error
|
|
|
|
ErrCacheFailed = errors.New("Cache failed")
|
|
|
|
// ErrNeedDeletedCond delete needs less one condition error
|
|
|
|
ErrNeedDeletedCond = errors.New("Delete need at least one condition")
|
|
|
|
// ErrNotImplemented not implemented
|
|
|
|
ErrNotImplemented = errors.New("Not implemented")
|
2018-01-27 10:20:59 -05:00
|
|
|
// ErrConditionType condition type unsupported
|
|
|
|
ErrConditionType = errors.New("Unsupported conditon type")
|
2016-11-03 18:16:01 -04:00
|
|
|
)
|