11 lines
322 B
C#
11 lines
322 B
C#
namespace ScadaLink.NotificationService;
|
|
|
|
/// <summary>
|
|
/// Signals a permanent SMTP failure (5xx) that should not be retried.
|
|
/// </summary>
|
|
public class SmtpPermanentException : Exception
|
|
{
|
|
public SmtpPermanentException(string message, Exception? innerException = null)
|
|
: base(message, innerException) { }
|
|
}
|