IW4M-Admin/SharedLibraryCore/Exceptions/AuthorizationException.cs
2018-04-13 23:51:38 -05:00

12 lines
253 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Exceptions
{
public class AuthorizationException : Exception
{
public AuthorizationException(string message) : base (message) { }
}
}