2013-08-29 05:18:02 +00:00
|
|
|
package xorm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2013-09-05 15:20:52 +00:00
|
|
|
ParamsTypeError error = errors.New("params type error")
|
|
|
|
TableNotFoundError error = errors.New("not found table")
|
|
|
|
UnSupportedTypeError error = errors.New("unsupported type error")
|
2013-08-29 05:18:02 +00:00
|
|
|
)
|