diff --git a/coordinator/coordinatorproto/errors.go b/coordinator/coordinatorproto/errors.go index dba975f4..4af2dcc4 100644 --- a/coordinator/coordinatorproto/errors.go +++ b/coordinator/coordinatorproto/errors.go @@ -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)) )