Index: service/datastore/errors.go |
diff --git a/service/datastore/errors.go b/service/datastore/errors.go |
index 5d4cb74b7c503a63d66dcb45cb615aa639393783..be125f8e16fbddd247dc033fc0f2d2b8a9b3d824 100644 |
--- a/service/datastore/errors.go |
+++ b/service/datastore/errors.go |
@@ -8,6 +8,7 @@ import ( |
"fmt" |
"reflect" |
+ "github.com/luci/gae" |
"google.golang.org/appengine/datastore" |
) |
@@ -16,6 +17,9 @@ var ( |
ErrInvalidKey = datastore.ErrInvalidKey |
ErrNoSuchEntity = datastore.ErrNoSuchEntity |
ErrConcurrentTransaction = datastore.ErrConcurrentTransaction |
+ |
+ // Stop is an alias for "github.com/luci/gae".Stop |
+ Stop = gae.Stop |
) |
// ErrFieldMismatch is returned when a field is to be loaded into a different |