LSFE/LSFE.Application/Common/Exceptions/UnauthorizedException.cs
rowell_m_soriano 015422a507
All checks were successful
Build and Deploy LSFE / build-and-deploy (push) Successful in 1m43s
refactoring some of codes
2026-07-30 16:44:17 +08:00

13 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LSFE.Application.Common.Exceptions
{
public class UnauthorizedException : Exception
{
public UnauthorizedException(string message)
: base(message) { }
}
}