vikunja-api/vendor/xorm.io/xorm/error.go

25 lines
766 B
Go
Raw Normal View History

2018-06-10 11:11:41 +02: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 (
// ErrParamsType params error
ErrParamsType = errors.New("Params type error")
// ErrTableNotFound table not found error
2019-03-29 18:54:35 +01:00
ErrTableNotFound = errors.New("Table not found")
2018-06-10 11:11:41 +02:00
// ErrUnSupportedType unsupported error
ErrUnSupportedType = errors.New("Unsupported type error")
2019-03-29 18:54:35 +01:00
// ErrNotExist record does not exist error
ErrNotExist = errors.New("Record does not exist")
2018-06-10 11:11:41 +02:00
// ErrCacheFailed cache failed error
ErrCacheFailed = errors.New("Cache failed")
2019-03-29 18:54:35 +01:00
// ErrConditionType condition type unsupported
ErrConditionType = errors.New("Unsupported condition type")
2018-06-10 11:11:41 +02:00
)