util, lang, etcd: Move the error type to our util package

We use this error in a lot of places, let's centralize it a bit.
This commit is contained in:
James Shubin
2025-02-07 17:12:28 -05:00
parent 096ef4cc66
commit ecd5a0f304
6 changed files with 59 additions and 24 deletions

View File

@@ -30,10 +30,10 @@
package etcd
import (
"github.com/purpleidea/mgmt/etcd/interfaces"
"github.com/purpleidea/mgmt/util"
)
const (
// errInconsistentApply means applyDeltaEvents wasn't consistent.
errInconsistentApply = interfaces.Error("inconsistent apply")
errInconsistentApply = util.Error("inconsistent apply")
)