UnableToCreateMemoryException .cs 328 B

1234567891011121314
  1. using System;
  2. namespace MECF.Framework.Common.Communications.Tcp.Buffer
  3. {
  4. [Serializable]
  5. public class UnableToCreateMemoryException : Exception
  6. {
  7. public UnableToCreateMemoryException()
  8. : base("All buffers were in use and acquiring more memory has been disabled.")
  9. {
  10. }
  11. }
  12. }