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 (
|
||||
"context"
|
||||
"database/sql"
|
||||
"fmt"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
// 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 ...
|
||||
var ErrAbortIteration error = fmt.Errorf("kissorm: abort iteration, should only be used inside QueryChunks function")
|
||||
|
|
Loading…
Reference in New Issue