Класс ShutdownException.cs
using System;
namespace Mail { /// <summary> /// Класс для обработки исключений POP3Unit /// </summary> public class ShutdownException: CoreException { public ShutdownException(string message) : base(message) { }
public ShutdownException(string message, System.Exception inner) : base(message, inner) { } } }