We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7aaca commit 6731494Copy full SHA for 6731494
sql/errors.go
@@ -0,0 +1,10 @@
1
+package sql
2
+
3
+import (
4
+ "errors"
5
+)
6
7
+var (
8
+ ErrNilQuery = errors.New("sql query cannot be nil")
9
+ ErrNilRow = errors.New("sql row cannot be nil")
10
0 commit comments