ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Exceptions/UnauthorizedException.cs

9 lines
169 B
C#

namespace DoliMiddlewareApi.Exceptions;
public class UnauthorizedException : Exception
{
public UnauthorizedException(string message) : base(message)
{
}
}