Merge remote-tracking branch 'origin/API8' into tizen_6.0
[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     public class AppNotFoundException : InvalidOperationException
10     {
11         /// <summary>
12         /// Constructor
13         /// </summary>
14         /// <param name="message">The localized error message string</param>
15         /// <since_tizen> 4 </since_tizen>
16         public AppNotFoundException(string message) : base(message)
17         {
18         }
19     }
20 }