2 using System.Collections.Generic;
5 namespace Tizen.Applications.Exceptions
8 /// The class that represents the exception which will be thrown when the memory is insufficient
10 public class OutOfMemoryException : InvalidOperationException
15 /// <param name="message">The localized error message string</param>
16 public OutOfMemoryException(string message) : base(message)