classlib/ExpenseTracker.Application/Common/Exceptions/UnAuthorizedException.cs
2024-08-07 21:12:02 +03:00

11 lines
243 B
C#

namespace ExpenseTracker.Application.Common.Exceptions;
public class UnAuthorizedException : Exception
{
public UnAuthorizedException()
: base() { }
public UnAuthorizedException(string message)
: base(message) { }
}