Files
Wino-Mail/Wino.Core.Domain/Exceptions/ImapTestSSLCertificateException.cs

17 lines
513 B
C#
Raw Permalink Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Exceptions;
public class ImapTestSSLCertificateException : System.Exception
{
2025-02-16 11:54:23 +01:00
public ImapTestSSLCertificateException(string issuer, string expirationDateString, string validFromDateString)
{
2025-02-16 11:54:23 +01:00
Issuer = issuer;
ExpirationDateString = expirationDateString;
ValidFromDateString = validFromDateString;
}
2025-02-16 11:54:23 +01:00
public string Issuer { get; set; }
public string ExpirationDateString { get; set; }
public string ValidFromDateString { get; set; }
}