xorm/error.go

11 lines
258 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")
ErrNotExist = errors.New("Not exist")
ErrIgnore = errors.New("Ignore")
)