IW4M-Admin/SharedLibraryCore/Exceptions/AuthorizationException.cs

12 lines
253 B
C#
Raw Normal View History

2018-04-14 00:51:38 -04:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Exceptions
{
public class AuthorizationException : Exception
{
public AuthorizationException(string message) : base (message) { }
}
}