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

Add account is deleted error

This commit is contained in:
mcrakhman 2023-10-20 19:15:14 +02:00
parent e35e1e8668
commit f43866fde4
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B

View file

@ -2,6 +2,7 @@ package coordinatorproto
import (
"errors"
"github.com/anyproto/any-sync/net/rpc/rpcerr"
)
@ -14,4 +15,5 @@ var (
ErrSpaceDeletionPending = errGroup.Register(errors.New("space is set out for deletion"), uint64(ErrorCodes_SpaceDeletionPending))
ErrSpaceNotExists = errGroup.Register(errors.New("space not exists"), uint64(ErrorCodes_SpaceNotExists))
ErrSpaceLimitReached = errGroup.Register(errors.New("space limit reached"), uint64(ErrorCodes_SpaceLimitReached))
ErrAccountIsDeleted = errGroup.Register(errors.New("account is deleted"), uint64(ErrorCodes_AccountDeleted))
)