1
0
forked from xorm/xorm
xorm/error.go
2023-10-28 03:30:11 +00:00

23 lines
590 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("Table not found")
// ErrUnSupportedType unsupported error
ErrUnSupportedType = errors.New("Unsupported type error")
// ErrConditionType condition type unsupported
ErrConditionType = errors.New("Unsupported condition type")
)