aboutsummaryrefslogtreecommitdiffstats
path: root/models/db/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/db/error.go')
-rw-r--r--models/db/error.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/models/db/error.go b/models/db/error.go
index 9577fa55db..85cba5c4e9 100644
--- a/models/db/error.go
+++ b/models/db/error.go
@@ -5,11 +5,14 @@
package db
import (
+ "errors"
"fmt"
"code.gitea.io/gitea/modules/util"
)
+var ErrAlreadyInTransaction = errors.New("database connection has already been in a transaction")
+
// ErrCancelled represents an error due to context cancellation
type ErrCancelled struct {
Message string