using System; namespace MediaBrowser.Controller.Authentication { /// /// The exception that is thrown when an attempt to authenticate fails. /// 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) { } } }