using System; namespace Sodao.FastSocket.Server.Protocol { /// /// bad protocol exception /// public sealed class BadProtocolException : ApplicationException { /// /// new /// public BadProtocolException() : base("bad protocol.") { } /// /// new /// /// public BadProtocolException(string message) : base(message) { } } }