From 47dc19087f877fe71f0312835df4efbb5e4cf70c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Sun, 17 Jan 2021 20:27:12 -0300 Subject: [PATCH] Use errors.Wrap(sql.ErrNoRows, "..") to make ErrRecordNotFound more idiomatic --- contracts.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contracts.go b/contracts.go index 66962a5..ca0c8d7 100644 --- a/contracts.go +++ b/contracts.go @@ -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")