aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication/AuthenticationException.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-08-10 21:42:46 -0400
committerGitHub <noreply@github.com>2019-08-10 21:42:46 -0400
commita96fa7a5c705d8b694c828ff451a77d60711d329 (patch)
tree0bfcdd9166036bdb9d52686ad29bb255ed9e8801 /MediaBrowser.Controller/Authentication/AuthenticationException.cs
parent5c366e46975d7d541ecacedc0a80b1d269fde007 (diff)
parent0f897589ed6349bb3c88919b06861daa80aec1be (diff)
Merge pull request #1397 from Bond-009/passfast
Streamline authentication proccess
Diffstat (limited to 'MediaBrowser.Controller/Authentication/AuthenticationException.cs')
-rw-r--r--MediaBrowser.Controller/Authentication/AuthenticationException.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Authentication/AuthenticationException.cs b/MediaBrowser.Controller/Authentication/AuthenticationException.cs
new file mode 100644
index 000000000..045cbcdae
--- /dev/null
+++ b/MediaBrowser.Controller/Authentication/AuthenticationException.cs
@@ -0,0 +1,28 @@
+using System;
+namespace MediaBrowser.Controller.Authentication
+{
+ /// <summary>
+ /// The exception that is thrown when an attempt to authenticate fails.
+ /// </summary>
+ public class AuthenticationException : Exception
+ {
+ /// <inheritdoc />
+ public AuthenticationException() : base()
+ {
+
+ }
+
+ /// <inheritdoc />
+ public AuthenticationException(string message) : base(message)
+ {
+
+ }
+
+ /// <inheritdoc />
+ public AuthenticationException(string message, Exception innerException)
+ : base(message, innerException)
+ {
+
+ }
+ }
+}