10 lines
188 B
Go
10 lines
188 B
Go
![]() |
package postgres
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var ErrorGotEmptyRow = errors.New("got empty row")
|
||
|
var ErrorNotFound = errors.New("no rows in result set")
|
||
|
var ErrorTimeout = errors.New("timeout")
|