using System;
namespace MediaBrowser.Controller.Authentication
{
    /// 
    /// The exception that is thrown when an attempt to authenticate fails.
    /// 
    public class AuthenticationException : Exception
    {
        /// 
        public AuthenticationException() : base()
        {
        }
        /// 
        public AuthenticationException(string message) : base(message)
        {
        }
        /// 
        public AuthenticationException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}