xorm/error.go

23 lines
590 B
Go
Raw Permalink Normal View History

2015-04-28 08:25:04 +00: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 (
2013-12-18 03:31:32 +00:00
"errors"
)
var (
2016-12-11 04:45:37 +00:00
// ErrParamsType params error
ErrParamsType = errors.New("Params type error")
// ErrTableNotFound table not found error
ErrTableNotFound = errors.New("Table not found")
2016-12-11 04:45:37 +00:00
// ErrUnSupportedType unsupported error
ErrUnSupportedType = errors.New("Unsupported type error")
// ErrConditionType condition type unsupported
ErrConditionType = errors.New("Unsupported condition type")
)