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

14 lines
262 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 UnableToAllocateBufferException : Exception
{
public UnableToAllocateBufferException()
: base("Cannot allocate buffer after few trials.")
{
}
}
}