mirror of https://github.com/VinGarcia/ksql.git
Use errors.Wrap(sql.ErrNoRows, "..") to make ErrRecordNotFound more idiomatic
parent
f06706b081
commit
47dc19087f
|
@ -2,11 +2,14 @@ package kissorm
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"database/sql"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ErrRecordNotFound ...
|
// ErrRecordNotFound ...
|
||||||
var ErrRecordNotFound error = fmt.Errorf("kissorm: the query returned no results")
|
var ErrRecordNotFound error = errors.Wrap(sql.ErrNoRows, "kissorm: the query returned no results")
|
||||||
|
|
||||||
// ErrAbortIteration ...
|
// ErrAbortIteration ...
|
||||||
var ErrAbortIteration error = fmt.Errorf("kissorm: abort iteration, should only be used inside QueryChunks function")
|
var ErrAbortIteration error = fmt.Errorf("kissorm: abort iteration, should only be used inside QueryChunks function")
|
||||||
|
|
Loading…
Reference in New Issue