16 lines
344 B
C#
16 lines
344 B
C#
using System;
|
|
|
|
namespace Wino.Core.Domain.Exceptions
|
|
{
|
|
public class SynchronizerException : Exception
|
|
{
|
|
public SynchronizerException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SynchronizerException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|