SenseNet.Services.ContentStore.ContentStoreService.SendErrorsToUser C# (CSharp) Méthode

SendErrorsToUser() private static méthode

private static SendErrorsToUser ( IList errors ) : void
errors IList
Résultat void
        private static void SendErrorsToUser(IList<Exception> errors)
        {
            foreach (var error in errors)
                Diagnostics.Logger.WriteException(error);
            throw new ApplicationException("Error(s) occured while deleting one or more contents. Errors are logged. Contact the system administrator for details.", errors[0]);
        }