SenseNet.ContentRepository.User.GetUniqueUserException C# (CSharp) Метод

GetUniqueUserException() приватный Метод

private GetUniqueUserException ( string domainPath, string ids ) : Exception
domainPath string
ids string
Результат System.Exception
        private Exception GetUniqueUserException(string domainPath, string ids)
        {
            return new InvalidOperationException(String.Concat(
                "There is/are already user(s) called {"
                , Name
                , "} under the domain {"
                , domainPath
                , "} (NodeId(s): {"
                , ids
                , "}). The 'Domain + Name' must be unique. {"
                , Path
                , "} cannot be saved."));
        }