mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
980dd0bf51
* update xorm and dependencies vendor for feature to dump to other database * fix golint
27 lines
870 B
Go
27 lines
870 B
Go
// 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 (
|
|
// 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")
|
|
)
|