2019-04-30 14:50:33 +08:00
|
|
|
package errors
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrRecordAlreadyExist record already exist error, happens when find any matched data when creating with a struct
|
|
|
|
ErrRecordAlreadyExist = errors.New("record already exist")
|
2019-08-23 20:33:38 +08:00
|
|
|
)
|