12 lines
253 B
C#
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) { }
|
|
}
|
|
}
|