@@ -1,14 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Wino.Core.Domain.Exceptions;
|
||||
|
||||
public class SynchronizerException : Exception
|
||||
namespace Wino.Core.Domain.Exceptions
|
||||
{
|
||||
public SynchronizerException(string message) : base(message)
|
||||
public class SynchronizerException : Exception
|
||||
{
|
||||
}
|
||||
public SynchronizerException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public SynchronizerException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
public SynchronizerException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user