namespace ZB.MOM.WW.ScadaBridge.NotificationService;
///
/// Signals a permanent SMTP failure (5xx) that should not be retried.
///
public class SmtpPermanentException : Exception
{
///
/// Initializes the exception with a message and optional inner exception.
///
/// Message describing the permanent SMTP failure.
/// Optional inner exception from the SMTP client.
public SmtpPermanentException(string message, Exception? innerException = null)
: base(message, innerException) { }
}