11 lines
243 B
C#
11 lines
243 B
C#
namespace ExpenseTracker.Application.Common.Exceptions;
|
|
|
|
public class UnAuthorizedException : Exception
|
|
{
|
|
public UnAuthorizedException()
|
|
: base() { }
|
|
|
|
public UnAuthorizedException(string message)
|
|
: base(message) { }
|
|
}
|