2020-01-30 10:14:48 +03:00
|
|
|
package gorm
|
|
|
|
|
2020-01-31 01:35:25 +03:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
2020-01-30 10:14:48 +03:00
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrRecordNotFound record not found error
|
|
|
|
ErrRecordNotFound = errors.New("record not found")
|
|
|
|
// ErrInvalidSQL invalid SQL error, happens when you passed invalid SQL
|
|
|
|
ErrInvalidSQL = errors.New("invalid SQL")
|
|
|
|
// ErrInvalidTransaction invalid transaction when you are trying to `Commit` or `Rollback`
|
|
|
|
ErrInvalidTransaction = errors.New("no valid transaction")
|
|
|
|
// ErrUnaddressable unaddressable value
|
|
|
|
ErrUnaddressable = errors.New("using unaddressable value")
|
2020-02-20 18:04:03 +03:00
|
|
|
// ErrNotImplemented not implemented
|
|
|
|
ErrNotImplemented = errors.New("not implemented")
|
2020-03-08 09:51:52 +03:00
|
|
|
// ErrMissingWhereClause missing where clause
|
|
|
|
ErrMissingWhereClause = errors.New("missing WHERE clause while deleting")
|
2020-01-30 10:14:48 +03:00
|
|
|
)
|