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

12 lines
235 B
C#

using System;
namespace Wino.Domain.Exceptions
{
public class SynchronizerEntityNotFoundException : Exception
{
public SynchronizerEntityNotFoundException(string message) : base(message)
{
}
}
}