UnableToAllocateBufferException.cs 304 B

1234567891011121314
  1. using System;
  2. namespace MECF.Framework.Common.Communications.Tcp.Buffer
  3. {
  4. [Serializable]
  5. public class UnableToAllocateBufferException : Exception
  6. {
  7. public UnableToAllocateBufferException()
  8. : base("Cannot allocate buffer after few trials.")
  9. {
  10. }
  11. }
  12. }