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

14 lines
286 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
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.")
{
}
}
}