diff --git a/Core/exceptions/AccessDeniedException.cs b/Core/exceptions/AccessDeniedException.cs new file mode 100644 index 0000000..f22ba14 --- /dev/null +++ b/Core/exceptions/AccessDeniedException.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FLocal.Core { + + public partial class AccessDeniedException : FLocalException { + + public AccessDeniedException(string Message) : base(Message) { } + + public AccessDeniedException() : this("Access denied") { } + + } + +}