IW4M-Admin/SharedLibraryCore/Exceptions/AuthorizationException.cs

11 lines
214 B
C#
Raw Normal View History

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