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