Added login plugin

This commit is contained in:
RaidMax
2018-04-13 23:51:38 -05:00
parent 4caa4655e2
commit cd2bbfb3d4
13 changed files with 256 additions and 23 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Exceptions
{
public class AuthorizationException : Exception
{
public AuthorizationException(string message) : base (message) { }
}
}