Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/MECF/Framework/Common/Communications/Tcp/Buffer/UnableToCreateMemoryExcepti...

14 lines
286 B
C#

using System;
namespace MECF.Framework.Common.Communications.Tcp.Buffer
{
[Serializable]
public class UnableToCreateMemoryException : Exception
{
public UnableToCreateMemoryException()
: base("All buffers were in use and acquiring more memory has been disabled.")
{
}
}
}