From c524f3919ef019092d3bcfa246870bc3f16070c5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 21 Jul 2014 21:29:06 -0400 Subject: added cloud sync model objects --- .../Security/AuthenticationException.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MediaBrowser.Server.Implementations/Security/AuthenticationException.cs (limited to 'MediaBrowser.Server.Implementations/Security/AuthenticationException.cs') diff --git a/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs b/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs new file mode 100644 index 000000000..f4ba2fb63 --- /dev/null +++ b/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs @@ -0,0 +1,16 @@ +using System; + +namespace MediaBrowser.Server.Implementations.Security +{ + public class AuthenticationException : Exception + { + public AuthenticationException(string message) + : base(message) + { + } + + public AuthenticationException() + { + } + } +} -- cgit v1.2.3