using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.Serialization; namespace QueryMaster { /// /// The exception that is thrown by the QueryMaster library /// [Serializable] public class QueryMasterException : Exception { public QueryMasterException() : base() { } public QueryMasterException(string message) : base(message) { } public QueryMasterException(string message, Exception innerException) : base(message, innerException) { } protected QueryMasterException(SerializationInfo info, StreamingContext context) : base(info, context) { } } /// /// The exception that is thrown when an invalid message header is received /// [Serializable] public class InvalidHeaderException : QueryMasterException { public InvalidHeaderException() : base() { } public InvalidHeaderException(string message) : base(message) { } public InvalidHeaderException(string message, Exception innerException) : base(message, innerException) { } protected InvalidHeaderException(SerializationInfo info, StreamingContext context) : base(info, context) { } } /// /// The exception that is thrown when an invalid packet is received /// [Serializable] public class InvalidPacketException : QueryMasterException { public InvalidPacketException() : base() { } public InvalidPacketException(string message) : base(message) { } public InvalidPacketException(string message, Exception innerException) : base(message, innerException) { } protected InvalidPacketException(SerializationInfo info, StreamingContext context) : base(info, context) { } } /// /// The exception that is thrown when there is an error while parsing received packets /// [Serializable] public class ParseException : QueryMasterException { public ParseException() : base() { } public ParseException(string message) : base(message) { } public ParseException(string message, Exception innerException) : base(message, innerException) { } protected ParseException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }