using System; namespace Ant.Service.Utilities { /// /// This class represents a Pop3 Exception. /// [global::System.Serializable] public class Pop3Exception : Exception { /// /// Initializes a new instance of the class. /// public Pop3Exception() { } /// /// Initializes a new instance of the class. /// /// The message. public Pop3Exception(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner. public Pop3Exception(string message, Exception inner) : base(message, inner) { } /// /// Initializes a new instance of the class. /// /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// The class name is null or is zero (0). /// The info parameter is null. protected Pop3Exception( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } } }