Release 4.0.0-preview1-00235
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications.Exceptions / LaunchRejectedException.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 launch request is rejected
7     /// </summary>
8     public class LaunchRejectedException : InvalidOperationException
9     {
10         /// <summary>
11         /// Constructor
12         /// </summary>
13         /// <param name="message">The localized error message string</param>
14         public LaunchRejectedException(string message) : base(message)
15         {
16         }
17     }
18 }