xorm/error.go

11 lines
253 B
Go
Raw Normal View History

2014-04-23 07:23:03 +00:00
package core
import "errors"
var (
ErrNoMapPointer = errors.New("mp should be a map's pointer")
ErrNoStructPointer = errors.New("mp should be a map's pointer")
2014-05-09 13:52:51 +00:00
//ErrNotExist = errors.New("Not exist")
//ErrIgnore = errors.New("Ignore")
2014-04-23 07:23:03 +00:00
)