namespace ScadaLink.NotificationService; /// /// Signals a permanent SMTP failure (5xx) that should not be retried. /// public class SmtpPermanentException : Exception { public SmtpPermanentException(string message, Exception? innerException = null) : base(message, innerException) { } }