12 lines
235 B
C#
12 lines
235 B
C#
using System;
|
|
|
|
namespace Wino.Domain.Exceptions
|
|
{
|
|
public class SynchronizerEntityNotFoundException : Exception
|
|
{
|
|
public SynchronizerEntityNotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|