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

14 lines
262 B
C#

using System;
namespace MECF.Framework.Common.Communications.Tcp.Buffer
{
[Serializable]
public class UnableToAllocateBufferException : Exception
{
public UnableToAllocateBufferException()
: base("Cannot allocate buffer after few trials.")
{
}
}
}