11 lines
209 B
C#
11 lines
209 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Retroactiune.Services
|
|||
|
{
|
|||
|
public class GenericServiceException : Exception
|
|||
|
{
|
|||
|
public GenericServiceException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|