13 lines
359 B
C#
13 lines
359 B
C#
namespace Wino.Domain.Exceptions
|
|
{
|
|
public class ImapClientPoolException : Exception
|
|
{
|
|
public ImapClientPoolException(Exception innerException, string protocolLog) : base(Translator.Exception_ImapClientPoolFailed, innerException)
|
|
{
|
|
ProtocolLog = protocolLog;
|
|
}
|
|
|
|
public string ProtocolLog { get; }
|
|
}
|
|
}
|