10 lines
280 B
Go
10 lines
280 B
Go
|
package models
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var ErrNoRows = errors.New("no rows in result set")
|
||
|
var ErrConnDone = errors.New("connection is already closed")
|
||
|
var ErrTxDone = errors.New("transaction has already been committed or rolled back")
|
||
|
|
||
|
var ErrNotFound = errors.New("record not found")
|