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