retroactiune/Retroactiune.Core/Services/GenericServiceException.cs

11 lines
No EOL
214 B
C#

using System;
namespace Retroactiune.Core.Services
{
public class GenericServiceException : Exception
{
public GenericServiceException(string message) : base(message)
{
}
}
}