winget-cli

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

WinGetSQLiteIndexException.cs (1753B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="WinGetSQLiteIndexException.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGetUtil.Exceptions
      8 {
      9     using System;
     10 
     11     /// <summary>
     12     /// Exception for SQLite index operations.
     13     /// </summary>
     14     public class WinGetSQLiteIndexException : Exception
     15     {
     16         /// <summary>
     17         /// Initializes a new instance of the <see cref="WinGetSQLiteIndexException"/> class.
     18         /// </summary>
     19         public WinGetSQLiteIndexException()
     20         {
     21         }
     22 
     23         /// <summary>
     24         /// Initializes a new instance of the <see cref="WinGetSQLiteIndexException"/> class.
     25         /// </summary>
     26         /// <param name="message">Message.</param>
     27         public WinGetSQLiteIndexException(string message)
     28             : base(message)
     29         {
     30         }
     31 
     32         /// <summary>
     33         /// Initializes a new instance of the <see cref="WinGetSQLiteIndexException"/> class.
     34         /// </summary>
     35         /// <param name="inner">Inner exception.</param>
     36         public WinGetSQLiteIndexException(Exception inner)
     37             : base(string.Empty, inner)
     38         {
     39         }
     40 
     41         /// <summary>
     42         /// Initializes a new instance of the <see cref="WinGetSQLiteIndexException"/> class.
     43         /// </summary>
     44         /// <param name="message">Message.</param>
     45         /// <param name="inner">Inner exception.</param>
     46         public WinGetSQLiteIndexException(string message, Exception inner)
     47             : base(message, inner)
     48         {
     49         }
     50     }
     51 }