namespace DigitalData.EmailProfiler.Domain.Exceptions; /// /// Exception thrown when DMS (windream) is not available or not configured properly. /// public class DmsNotAvailableException : Exception { public DmsNotAvailableException() : base("DMS service is not available. windream COM components may not be registered.") { } public DmsNotAvailableException(string message) : base(message) { } public DmsNotAvailableException(string message, Exception innerException) : base(message, innerException) { } }