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

14 lines
345 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
2025-02-16 11:35:43 +01:00
namespace Wino.Core.Domain.Exceptions;
public class ImapClientPoolException : Exception
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:35:43 +01:00
public ImapClientPoolException(Exception innerException, string protocolLog) : base(Translator.Exception_ImapClientPoolFailed, innerException)
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:35:43 +01:00
ProtocolLog = protocolLog;
2024-04-18 01:44:37 +02:00
}
2025-02-16 11:35:43 +01:00
public string ProtocolLog { get; }
2024-04-18 01:44:37 +02:00
}