[Applications.Common] Remove warning messages (#5532)
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications.Exceptions / AppNotFoundException.cs
1 using System;
2
3 namespace Tizen.Applications.Exceptions
4 {
5     /// <summary>
6     /// The class that represents the exception which will be thrown when the application to run is not found
7     /// </summary>
8     /// <since_tizen> 4 </since_tizen>
9 #pragma warning disable CA1032
10     public class AppNotFoundException : InvalidOperationException
11 #pragma warning restore CA1032
12     {
13         /// <summary>
14         /// Constructor
15         /// </summary>
16         /// <param name="message">The localized error message string</param>
17         /// <since_tizen> 4 </since_tizen>
18         public AppNotFoundException(string message) : base(message)
19         {
20         }
21     }
22 }