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