10 lines
203 B
C#
10 lines
203 B
C#
namespace Wino.Core.Domain.Exceptions;
|
|
|
|
public class ImapSynchronizerStrategyException : System.Exception
|
|
{
|
|
public ImapSynchronizerStrategyException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|