using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace WebSockets.Exceptions { [Serializable] public class EntityTooLargeException : Exception { public EntityTooLargeException() : base() { } /// /// Http header too large to fit in buffer /// public EntityTooLargeException(string message) : base(message) { } public EntityTooLargeException(string message, Exception inner) : base(message, inner) { } public EntityTooLargeException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }