mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-30 10:48:15 +08:00
11 lines
223 B
Go
11 lines
223 B
Go
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")
|
|
)
|