| 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.")        {        }    }}
 |