Release 4.0.0-preview1-00235
[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     public class OutOfMemoryException : InvalidOperationException
11     {
12         /// <summary>
13         /// Constructor
14         /// </summary>
15         /// <param name="message">The localized error message string</param>
16         public OutOfMemoryException(string message) : base(message)
17         {
18         }
19     }
20 }