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