2021-05-29 17:02:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2021-06-21 14:46:44 +00:00
|
|
|
|
namespace Retroactiune.Core.Services
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
public class GenericServiceException : Exception
|
|
|
|
|
{
|
|
|
|
|
public GenericServiceException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|