IW4M-Admin/SharedLibraryCore/Exceptions/AuthorizationException.cs

11 lines
214 B
C#
Raw Normal View History

2018-04-13 23:51:38 -05:00
using System;
namespace SharedLibraryCore.Exceptions
{
public class AuthorizationException : Exception
{
2022-01-26 10:32:16 -06:00
public AuthorizationException(string message) : base(message)
{
}
2018-04-13 23:51:38 -05:00
}
2022-01-26 10:32:16 -06:00
}