winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

ErrorRecordErrorId.cs (672B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ErrorRecordErrorId.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGet.Configuration.Engine.Exceptions
      8 {
      9     /// <summary>
     10     /// ErrorId used for the ErrorRecords.
     11     /// </summary>
     12     internal enum ErrorRecordErrorId
     13     {
     14         /// <summary>
     15         /// Error message from diagnostics.
     16         /// </summary>
     17         ConfigurationDiagnosticError,
     18     }
     19 }