9 lines
151 B
C#
9 lines
151 B
C#
|
|
namespace DoliMiddlewareApi.Exceptions;
|
||
|
|
|
||
|
|
public class ApiException : Exception
|
||
|
|
|
||
|
|
{
|
||
|
|
public ApiException(string message) : base(message)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|