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