aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-21 21:29:06 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-21 21:29:06 -0400
commitc524f3919ef019092d3bcfa246870bc3f16070c5 (patch)
treedc90081f8854340b275ce4e40cccaa7ff14e9847 /MediaBrowser.Server.Implementations/Security/AuthenticationException.cs
parentce20066bc0e2c7ba1634200cdee6ac339d4dfb60 (diff)
added cloud sync model objects
Diffstat (limited to 'MediaBrowser.Server.Implementations/Security/AuthenticationException.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Security/AuthenticationException.cs16
1 files changed, 16 insertions, 0 deletions
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()
+ {
+ }
+ }
+}