diff --git a/MediaBrowser.Controller/Authentication/AuthenticationException.cs b/MediaBrowser.Controller/Authentication/AuthenticationException.cs
index 62eca3ea9f..28209f6391 100644
--- a/MediaBrowser.Controller/Authentication/AuthenticationException.cs
+++ b/MediaBrowser.Controller/Authentication/AuthenticationException.cs
@@ -7,23 +7,29 @@ namespace MediaBrowser.Controller.Authentication
///
public class AuthenticationException : Exception
{
- ///
+ ///
+ /// Initializes a new instance of the class.
+ ///
public AuthenticationException() : base()
{
-
}
- ///
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The message that describes the error.
public AuthenticationException(string message) : base(message)
{
-
}
- ///
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The message that describes the error
+ /// The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
public AuthenticationException(string message, Exception innerException)
: base(message, innerException)
{
-
}
}
}