Moved most exceptions to abstractions. Added abstractions to web and tests.

This commit is contained in:
Lars-Erik Aabech
2019-05-20 16:45:12 +02:00
parent 61cb7ac769
commit dff06bde30
9 changed files with 21 additions and 19 deletions

View File

@@ -1,14 +0,0 @@
using System;
namespace Umbraco.Core.Exceptions
{
public class AuthorizationException : Exception
{
public AuthorizationException()
{ }
public AuthorizationException(string message)
: base(message)
{ }
}
}