Files
Backend-Api/0_Framework/Exceptions/UnAuthorizeException.cs

10 lines
177 B
C#

using System;
namespace _0_Framework.Exceptions;
public class UnAuthorizeException:Exception
{
public UnAuthorizeException(string message) : base(message)
{
}
}