mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 13:17:42 +08:00
10 lines
222 B
Go
10 lines
222 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")
|
||
|
)
|