15 lines
267 B
C#
15 lines
267 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Core.Exceptions
|
|||
|
|
{
|
|||
|
|
public class AuthorizationException : Exception
|
|||
|
|
{
|
|||
|
|
public AuthorizationException()
|
|||
|
|
{ }
|
|||
|
|
|
|||
|
|
public AuthorizationException(string message)
|
|||
|
|
: base(message)
|
|||
|
|
{ }
|
|||
|
|
}
|
|||
|
|
}
|