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:
parent
e35e1e8668
commit
f43866fde4
1 changed files with 2 additions and 0 deletions
|
@ -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))
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue