Setting since_tizen 3/4 on Tizen.NET API
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications.Exceptions / OutOfMemoryException.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace Tizen.Applications.Exceptions
6 {
7     /// <summary>
8     /// The class that represents the exception which will be thrown when the memory is insufficient
9     /// </summary>
10     /// <since_tizen> 4 </since_tizen>
11     public class OutOfMemoryException : InvalidOperationException
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 OutOfMemoryException(string message) : base(message)
19         {
20         }
21     }
22 }