1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

coordinatorproto: ErrAclHeadIsMissing

This commit is contained in:
Sergey Cherepanov 2024-04-02 14:24:26 +02:00
parent 36929fc83b
commit ad704c85eb
No known key found for this signature in database
GPG key ID: 87F8EDE8FBDF637C

View file

@ -17,4 +17,5 @@ var (
ErrSpaceLimitReached = errGroup.Register(errors.New("space limit reached"), uint64(ErrorCodes_SpaceLimitReached))
ErrAccountIsDeleted = errGroup.Register(errors.New("account is deleted"), uint64(ErrorCodes_AccountDeleted))
ErrForbidden = errGroup.Register(errors.New("forbidden"), uint64(ErrorCodes_Forbidden))
ErrAclHeadIsMissing = errGroup.Register(errors.New("acl head is missing"), uint64(ErrorCodes_AclHeadIsMissing))
)